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

small fix to exception format string #313

Merged
merged 1 commit into from Oct 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -1785,7 +1785,7 @@ public void afterBulk(long executionId, BulkRequest request, Throwable failure)
}
LOGGER.debug("added %d elements", totalCount);
if (failures.size() > 0) {
throw new VertexiumException(String.format("Failed bulk update (failures: %s)", failures.size()));
throw new VertexiumException(String.format("Failed bulk update (failures: %d)", failures.size()));
}

if (getConfig().isAutoFlush()) {
Expand Down
Expand Up @@ -13,8 +13,6 @@
public abstract class InMemoryElement<TElement extends InMemoryElement> extends ElementBase {
private final String id;
private final FetchHints fetchHints;
private Property idProperty;
private Property edgeLabelProperty;
private InMemoryGraph graph;
private InMemoryTableElement<TElement> inMemoryTableElement;
private final Long endTime;
Expand Down