Skip to content

Commit

Permalink
[hotfix][yarn-tests] Fixes path definition for local YARN-test workin…
Browse files Browse the repository at this point in the history
…g directory artifact collection
  • Loading branch information
XComp authored and zentol committed Sep 7, 2021
1 parent 0dc46ca commit da5e757
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1216,7 +1216,7 @@ public static void teardown() throws Exception {
// to <flinkRoot>/target/flink-yarn-tests-*.
// The files from there are picked up by the tools/ci/* scripts to upload them.
if (isOnCI()) {
File target = new File("../target" + YARN_CONFIGURATION.get(TEST_CLUSTER_NAME_KEY));
File target = new File("../target/" + YARN_CONFIGURATION.get(TEST_CLUSTER_NAME_KEY));
if (!target.mkdirs()) {
LOG.warn("Error creating dirs to {}", target);
}
Expand Down

0 comments on commit da5e757

Please sign in to comment.