Skip to content

Commit

Permalink
addressed comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Sourav Maji committed Feb 26, 2025
1 parent 2197ac8 commit f849f01
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -859,10 +859,7 @@ public void stopInner() throws Exception {
if (hasInFlightRequest()) {
throw new VeniceException("There are still in-flight requests in router");
}
},
10,
Duration.ofSeconds(config.getRouterNettyGracefulShutdownPeriodSeconds()),
Collections.singletonList(VeniceException.class));
}, 30, Duration.ofSeconds(1), Collections.singletonList(VeniceException.class));
} catch (VeniceException e) {
LOGGER.error(
"There are still in-flight request during router shutdown, still continuing shutdown, it might cause unhealthy request in client");
Expand Down

0 comments on commit f849f01

Please sign in to comment.