in app/eventgenerator/src/main/java/com/googlecodesamples/cloud/jss/eventgenerator/factory/EventPublisherFactory.java [75:81]
protected RetrySettings getRetrySetting() {
return RetrySettings.newBuilder()
.setInitialRpcTimeout(Duration.ofSeconds(getConfig().getInitialTimeout()))
.setMaxRpcTimeout(Duration.ofSeconds(getConfig().getTotalTimeout()))
.setTotalTimeout(Duration.ofSeconds(getConfig().getTotalTimeout()))
.build();
}