8000 Check scheduler queue return value by dhly-etc · Pull Request #9754 · arangodb/arangodb · GitHub
[go: up one dir, main page]

Skip to content

Check scheduler queue return value #9754

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 13 commits into from
Aug 19, 2019
Prev Previous commit
Next Next commit
Fix log ID collision.
  • Loading branch information
Dan authored and Dan committed Aug 13, 2019
commit 345e9056259d25a731d476c2d622d496493f639d
2 changes: 1 addition & 1 deletion arangod/Pregel/GraphStore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ void GraphStore<V, E>::loadShards(WorkerConfig* config,
<< "No thread available to queue vertex loading";
}
} catch (basics::Exception const& ex) {
LOG_TOPIC("3f282", WARN, Logger::PREGEL)
LOG_TOPIC("3f283", WARN, Logger::PREGEL)
<< "unhandled exception while "
<< "loading pregel graph: " << ex.what();
} catch (...) {
Expand Down
0