File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -116,6 +116,10 @@ var endpoints = []Endpoint{
116116 Pattern : "/evp_proxy/v1/" ,
117117 Handler : func (r * HTTPReceiver ) http.Handler { return r .evpProxyHandler () },
118118 },
119+ {
120+ Pattern : "/evp_proxy/v2/" ,
121+ Handler : func (r * HTTPReceiver ) http.Handler { return r .evpProxyHandler () },
122+ },
119123 {
120124 Pattern : "/debugger/v1/input" ,
121125 Handler : func (r * HTTPReceiver ) http.Handler { return r .debuggerProxyHandler () },
Original file line number Diff line number Diff line change @@ -131,6 +131,7 @@ func TestInfoHandler(t *testing.T) {
131131 "/v0.1/pipeline_stats",
132132 "/appsec/proxy/",
133133 "/evp_proxy/v1/",
134+ "/evp_proxy/v2/",
134135 "/debugger/v1/input"
135136 "/dogstatsd/v1/proxy"
136137 ],
@@ -191,6 +192,7 @@ func TestInfoHandler(t *testing.T) {
191192 "/v0.1/pipeline_stats",
192193 "/appsec/proxy/",
193194 "/evp_proxy/v1/",
195+ "/evp_proxy/v2/",
194196 "/debugger/v1/input"
195197 "/dogstatsd/v1/proxy"
196198 ],
You can’t perform that action at this time.
0 commit comments