errors.go 250 B

123456
  1. package kafka
  2. import "errors"
  3. // Error returned when the client has run out of brokers to talk to (none of them are responding).
  4. var OutOfBrokers = errors.New("kafka: Client has run out of available brokers to talk to. Is your cluster reachable?")