@@ -58,7 +58,7 @@ var DynamicResolverOriginalHostAccessLogTest = suite.ConformanceTest{
5858 Path : "/original-host" ,
5959 Headers : map [string ]string {
6060 "x-envoy-logged" : "1" ,
61- "x-request -id" : requestID ,
61+ "x-eg-test -id" : requestID ,
6262 },
6363 },
6464 ExpectedRequest : & http.ExpectedRequest {
@@ -76,7 +76,7 @@ var DynamicResolverOriginalHostAccessLogTest = suite.ConformanceTest{
7676 http .MakeRequestAndExpectEventuallyConsistentResponse (t , suite .RoundTripper , suite .TimeoutConfig , gwAddr , expectedResponse )
7777
7878 labels := getOTELLabels (ns )
79- match := `\"x-request -id\":\"` + requestID + `\"`
79+ match := `\"test -id\":\"` + requestID + `\"`
8080
8181 var matchedLog string
8282 err := wait .PollUntilContextTimeout (context .Background (), time .Second , time .Minute , true , func (_ context.Context ) (bool , error ) {
@@ -94,15 +94,15 @@ var DynamicResolverOriginalHostAccessLogTest = suite.ConformanceTest{
9494 continue
9595 }
9696
97- if gotRequestID , ok := entry ["x-request -id" ].(string ); ok && gotRequestID == requestID {
97+ if gotRequestID , ok := entry ["test -id" ].(string ); ok && gotRequestID == requestID {
9898 matchedLog = line
9999 return true , nil
100100 }
101101 }
102102
103103 return false , nil
104104 })
105- time .Sleep (5 * time .Hour )
105+ time .Sleep (5 * time .Hour )
106106 require .NoError (t , err , "timed out waiting for access log line for request id %s" , requestID )
107107
108108 entry := map [string ]string {}
0 commit comments