8000 Bug fix 3.8/allow for long supervision job runtimes by kvahed · Pull Request #14742 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Bug fix 3.8/allow for long supervision job runtimes #14742

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

Merged
merged 21 commits into from
Sep 11, 2021
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
integration tests
  • Loading branch information
kvahed committed Sep 8, 2021
commit 0878397a97abddb759d5b4841bf7f937f5ab98bf
1 change: 0 additions & 1 deletion arangod/RestHandler/RestAdminClusterHandler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -945,7 +945,6 @@ RestStatus RestAdminClusterHandler::handleCancelJob() {
VPackSlice job = res.at(0).get(path);

if (job.isObject()) {
LOG_DEVEL << job.toJson();
LOG_TOPIC("eb139", INFO, Logger::SUPERVISION)
<< "Attempting to abort supervision job " << job.toJson();
auto type = job.get("type").copyString();
Expand Down
0