You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm puzzled by the following: The default value for queryTimeout is 0 which means that "that the driver should wait indefinitely" (see here). Looking at the callHeartBeatWithQueryTimeout I see that it tries to resolve a future with future.get(timeout, TimeUnit.SECONDS). According to the documentation for Future a 0 timeout here means a wait of "at most the given time" which is 0. (See here.)
What have I misunderstood?
The text was updated successfully, but these errors were encountered:
Hi hi
I'm puzzled by the following: The default value for
queryTimeout
is0
which means that "that the driver should wait indefinitely" (see here). Looking at thecallHeartBeatWithQueryTimeout
I see that it tries to resolve a future withfuture.get(timeout, TimeUnit.SECONDS)
. According to the documentation forFuture
a0
timeout here means a wait of "at most the given time" which is0
. (See here.)What have I misunderstood?
The text was updated successfully, but these errors were encountered: