Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates #92

Merged
merged 4 commits into from
Apr 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Flush listener from all remote callables.
  • Loading branch information
jglick committed Apr 10, 2019
commit 9da949541b8a9c5cb36a290fa8a4f91f92132b6f
Original file line number Diff line number Diff line change
@@ -149,6 +149,7 @@ public Void invoke(File f, VirtualChannel channel) throws IOException, Interrupt
for (Map.Entry<String, URL> entry : artifactUrls.entrySet()) {
client.uploadFile(new File(f, entry.getKey()), entry.getValue(), listener);
}
listener.getLogger().flush();
return null;
}
}
@@ -266,6 +267,7 @@ public Void invoke(File f, VirtualChannel channel) throws IOException, Interrupt
// Note that this API currently offers no count of files in the tarball we could report.
}
}, listener);
listener.getLogger().flush();
return null;
}
}