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
same error over?
  • Loading branch information
kvahed committed Sep 9, 2021
commit 57c3b98abb85b1a403febe86c78c4b7777845506
2 changes: 1 addition & 1 deletion tests/Agency/CleanOutServerTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ TEST_F(CleanOutServerTest, when_the_cleanout_server_job_aborts_abort_all_subjobs
EXPECT_TRUE(writes.get("/arango/Target/ToDo/1-0").get("op").copyString() ==
"delete");
// a not yet started job will be moved to finished
EXPECT_TRUE(std::string(writes.get("/arango/Target/Finished/1-0").typeName()) ==
EXPECT_TRUE(std::string(writes.get("/arango/Target/Failed/1-0").typeName()) ==
"object");
auto preconds = q->slice()[0][1];
EXPECT_TRUE(preconds.get("/arango/Target/ToDo/1-0").get("oldEmpty").isFalse());
Expand Down
0