(tenantHost, suffix string)
| 391 | } |
| 392 | |
| 393 | func tenantRedisKey(tenantHost, suffix string) string { |
| 394 | if tenantHost != "" { |
| 395 | return "t:" + tenantHost + ":" + suffix |
| 396 | } |
| 397 | return suffix |
| 398 | } |
| 399 | |
| 400 | func (e *Emitter) tryDedup(tenantHost, fp string) bool { |
| 401 | ctx := context.Background() |
no outgoing calls
no test coverage detected