Skip to content
Closed
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
Expand Up @@ -79,6 +79,9 @@ public class Client implements AutoCloseable {
// .setDirectAccessRequested(true)
.setPeerInfo(true)
.setSessionsCompatible(true)
.setSessionsRequired( // Internal system property internal testing, not to be used by
// external customers.
Boolean.getBoolean("bigtable.internal.sessions-required"))
.build();
// gRPC keep-alive interval 60 seconds.
public static final int KEEPALIVE_TIME_MS = 60000;
Expand Down
Loading