We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hi,
the conversion of the timeout in this line is wrong:
java-client-api/marklogic-client-api/src/main/java/com/marklogic/client/datamovement/impl/WriteBatcherImpl.java
Line 890 in b68bab9
It should be like this: long duration = TimeUnit.MILLISECONDS.convert(timeout, unit);
long duration = TimeUnit.MILLISECONDS.convert(timeout, unit);