Skip to content

Commit 3271f56

Browse files
chore: generate libraries at Mon Jan 6 13:16:49 UTC 2025
1 parent fa7025d commit 3271f56

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

google-cloud-spanner/src/main/java/com/google/cloud/spanner/AsyncResultSetImpl.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,9 @@ public void run() {
470470
// Non-streaming result sets do not trigger this callback, and for those result sets, we
471471
// need to eagerly start the ProduceRowsRunnable.
472472
synchronized (monitor) {
473-
if (state == State.STREAMING_STARTED || state == State.RUNNING || state == State.CONSUMING) {
473+
if (state == State.STREAMING_STARTED
474+
|| state == State.RUNNING
475+
|| state == State.CONSUMING) {
474476
return;
475477
}
476478
state = State.STREAMING_STARTED;

0 commit comments

Comments
 (0)