v1AnalyticsInterceptor looks for requests to the (now deprecated) v1 analytics endpoint, and re-directs these requests to the v2 analytics service. This is a temporary measure to allow users to migrate to the new service.
| 46 | // v1AnalyticsInterceptor looks for requests to the (now deprecated) v1 analytics endpoint, and re-directs these |
| 47 | // requests to the v2 analytics service. This is a temporary measure to allow users to migrate to the new service. |
| 48 | type v1AnalyticsInterceptor struct { |
| 49 | requestCondition goproxy.ReqCondition |
| 50 | invocationCtx workflow.InvocationContext |
| 51 | } |
| 52 | |
| 53 | func (v v1AnalyticsInterceptor) GetCondition() goproxy.ReqCondition { |
| 54 | return v.requestCondition |
nothing calls this directly
no outgoing calls
no test coverage detected