Skip to content

Commit

Permalink
[hotfix][e2e] Add 'flink' prefix to flink log backup directory
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Jun 17, 2020
1 parent 03a8ef6 commit 0c4c461
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ private void shutdownCluster() {

private void backupLogs() {
if (logBackupDirectory != null) {
final Path targetDirectory = logBackupDirectory.resolve(UUID.randomUUID().toString());
final Path targetDirectory = logBackupDirectory.resolve("flink-" + UUID.randomUUID().toString());
try {
distribution.copyLogsTo(targetDirectory);
LOG.info("Backed up logs to {}.", targetDirectory);
Expand Down

0 comments on commit 0c4c461

Please sign in to comment.