WaitingTaskKey returns the subkey of k, where waiting tasks are stored.
(k string)
| 426 | |
| 427 | // WaitingTaskKey returns the subkey of k, where waiting tasks are stored. |
| 428 | func WaitingTaskKey(k string) string { |
| 429 | return Key(k, "waiting") |
| 430 | } |
| 431 | |
| 432 | // IsConsumerGroupExistsErr returns true if error represents the redis BUSYGROUP error. |
| 433 | func IsConsumerGroupExistsErr(err error) bool { |