Github user pnowojski commented on a diff in the pull request: https://github.com/apache/flink/pull/4774#discussion_r143416770 --- Diff: flink-runtime/src/main/java/org/apache/flink/runtime/executiongraph/restart/FixedDelayRestartStrategy.java --- @@ -82,7 +82,7 @@ public static FixedDelayRestartStrategyFactory createFactory(Configuration confi int maxAttempts = configuration.getInteger(ConfigConstants.RESTART_STRATEGY_FIXED_DELAY_ATTEMPTS, 1); String timeoutString = configuration.getString( - AkkaOptions.WATCH_HEARTBEAT_INTERVAL); + AkkaOptions.WATCH_HEARTBEAT_PAUSE); --- End diff -- I will fix the inconsistency in other way: fixing exception message instead of this getter.
---