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.
1 parent 9e4c31f commit dc12b5cCopy full SHA for dc12b5c
google-cloud-spanner/src/main/java/com/google/cloud/spanner/MultiplexedSessionDatabaseClient.java
@@ -293,8 +293,8 @@ private void maybeMarkUnimplemented(Throwable t) {
293
294
private void maybeMarkUnimplementedForRW(SpannerException spannerException) {
295
if (spannerException.getErrorCode() == ErrorCode.UNIMPLEMENTED
296
- // && spannerException.getReason().equalsIgnoreCase("Transaction type read_write not supported
297
- // with multiplexed sessions")
+ // && spannerException.getCause().getMessage().contains("Transaction type read_write not
+ // supported with multiplexed sessions")
298
) {
299
unimplementedForRW.set(true);
300
}
0 commit comments