in dubbo-spring-boot-samples/auto-configure-samples/provider-sample/src/main/java/org/apache/dubbo/spring/boot/sample/provider/service/DefaultDemoService.java [53:61]
private void await() {
try {
long timeInMillisToWait = costTimeRandom.nextInt(500);
Thread.sleep(timeInMillisToWait);
logger.info("execution time : " + timeInMillisToWait + " ms.");
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
}