(ctx context.Context)
| 20 | // RecoveryQueryOrigin identifies an explicitly service-owned recovery or |
| 21 | // restart connection. |
| 22 | RecoveryQueryOrigin |
| 23 | ) |
| 24 | |
| 25 | var queryOriginKey = QueryOriginKey{} |
| 26 | |
| 27 | func WithQueryOrigin(ctx context.Context, kind QueryOriginKind) context.Context { |
| 28 | if ctx == nil { |
| 29 | ctx = context.Background() |
| 30 | } |
no outgoing calls
no test coverage detected