Skip to content

Commit

Permalink
Merge pull request #337 from LeComptoirDesPharmacies/hotfix/336
Browse files Browse the repository at this point in the history
#336 : fixed idempotency issue
  • Loading branch information
iulian03 authored Aug 26, 2024
2 parents 3b00754 + 41ef467 commit a43b93e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ private void instantiateResourceObject(IdempotencyResponse response) throws Exce
//Class<? extends Object> value = entry.getValue();

String sourceUrl = super.getRequestUrl(entry.getKey());
sourceUrl = String.format(sourceUrl, "[0-9a-zA-Z]+", "[0-9a-zA-Z]+");
sourceUrl = String.format(sourceUrl, "[0-9a-zA-Z_]+", "[0-9a-zA-Z_]+");
sourceUrl = sourceUrl.replace("/", "\\/");

Pattern ex = Pattern.compile(sourceUrl);
Expand Down

0 comments on commit a43b93e

Please sign in to comment.