Github user florianschmidt1994 commented on a diff in the pull request:
https://github.com/apache/flink/pull/6053#discussion_r195076092
--- Diff:
flink-end-to-end-tests/test-scripts/test_local_recovery_and_scheduling.sh ---
@@ -71,8 +69,14 @@ function run_local_recovery_test {
local incremental=$4
local kill_jvm=$5
- echo "Running local recovery test on ${backend} backend: incremental
checkpoints = ${incremental}, kill JVM = ${kill_jvm}."
-
TEST_PROGRAM_JAR=${END_TO_END_DIR}/flink-local-recovery-and-allocation-test/target/StickyAllocationAndLocalRecoveryTestJob.jar
+ echo "Running local recovery test with configuration:
+ parallelism: ${parallelism}
+ max attempts: ${max_attempts}
+ backend: ${backend}
+ incremental checkpoints: ${incremental}
+ kill JVM: ${kill_jvm}"
+
+
TEST_PROGRAM_JAR=$TEST_INFRA_DIR/../../flink-end-to-end-tests/flink-local-recovery-and-allocation-test/target/StickyAllocationAndLocalRecoveryTestJob.jar
--- End diff --
Only works if we export END_TO_END_DIR in run_nightly/precommit_tests.sh,
but I'll just add that there as well
---