Skip to content

Commit

Permalink
add timelogger
Browse files Browse the repository at this point in the history
  • Loading branch information
bennsimon committed Jan 12, 2024
1 parent cbab1a3 commit 47da8f0
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,9 @@ private Bundle postProcessModeListEntries(IBaseResource responseResource) {
ctx.getRestfulClientFactory().setConnectTimeout(fivemins);
ctx.getRestfulClientFactory().setConnectionRequestTimeout(fivemins);
ctx.getRestfulClientFactory().setSocketTimeout(fivemins);
IGenericClient _fhirR4Client = ctx.newRestfulGenericClient(fhirR4Client.getServerBase());
logger.info("Time taken: "+ (System.currentTimeMillis() - start) + "ms");
return ctx.newRestfulGenericClient(fhirR4Client.getServerBase()).transaction().withBundle(requestBundle).execute();
return _fhirR4Client.transaction().withBundle(requestBundle).execute();
}

/* Generates a map of Code.url to multiple Code.Value which contains all the possible filters that
Expand Down

0 comments on commit 47da8f0

Please sign in to comment.