The nats consumer fetch loop has two select cases that end with a break statement. The break is the last line of the case body, so it does nothing. staticcheck flags this as SA4011 (ineffective break).
File: src/libraries/go/worker/consumer/nats_consumer.go, lines 346 and 372.
The nats consumer fetch loop has two select cases that end with a break statement. The break is the last line of the case body, so it does nothing. staticcheck flags this as SA4011 (ineffective break).
File: src/libraries/go/worker/consumer/nats_consumer.go, lines 346 and 372.