We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97d5050 commit 8b87572Copy full SHA for 8b87572
bzst-dip-java-client/src/main/java/software/xdev/bzst/dip/client/BzstDipClient.java
@@ -263,7 +263,10 @@ private BzstDipRequestStatusResult queryDipResultWithRetry(
263
{
264
if(retryCounter != 0)
265
266
- Thread.sleep(this.configuration.getQueryResultConfiguration().delayInBetweenResultChecks().toMillis());
+ final long delayInMilliseconds =
267
+ this.configuration.getQueryResultConfiguration().delayInBetweenResultChecks().toMillis();
268
+ LOGGER.debug("Waiting {}ms for next query...", delayInMilliseconds);
269
+ Thread.sleep(delayInMilliseconds);
270
}
271
requestStatusResult = webClient.readAndConfirmDataTransferNumbers();
272
retryCounter++;
0 commit comments