(_ context.Context, uid string)
| 54 | } |
| 55 | |
| 56 | func (ps *PubSubStore) eventDataKey(_ context.Context, uid string) string { |
| 57 | return ps.client.Key("event_data", uid) |
| 58 | } |
| 59 | |
| 60 | // eventIndexKey returns the Redis for indexing events with the given correlationID. |
| 61 | // Since correlation IDs are user input (and can therefore contain characters that |
no test coverage detected