Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2023 MarkLogic Corporation
* Copyright (c) 2011-2026 Progress Software Corporation and/or its subsidiaries or affiliates. All Rights Reserved.
Comment thread
yunzvanessa marked this conversation as resolved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -92,10 +92,12 @@ public void write(DocumentURI key, VALUE value) throws IOException,
commitSleepTime = MIN_SLEEP_TIME;
while (commitRetry < commitRetryLimit) {
committed = false;
if (LOG.isDebugEnabled()) {
LOG.debug(getFormattedBatchId() +
"Retrying committing batch , attempts: " +
commitRetry + "/" + MAX_RETRIES);
if (commitRetry > 0) {
if (LOG.isDebugEnabled()) {
LOG.debug(getFormattedBatchId() +
"Retrying committing batch, attempts: " +
commitRetry + "/" + MAX_RETRIES);
}
Comment thread
yunzvanessa marked this conversation as resolved.
}
queries[sid].setNewVariables(uriName, uris[sid]);
queries[sid].setNewVariables(contentName, values[sid]);
Expand Down
Loading