@@ -49,7 +49,7 @@ func (s *FunctionalSuite) TestCreateSimplePipeline() {
4949 VertexPodLogContains ("p1" , LogMapVertexStartedRustRuntime , PodLogCheckOptionWithContainer ("numa" )).
5050 VertexPodLogContains ("output" , LogSinkVertexStartedRustRuntime ).
5151 DaemonPodLogContains (pipelineName , LogDaemonStarted ).
52- VertexPodLogContains ("output" , `"value":.*EventTime - \d+` )
52+ VertexPodLogContains ("output" , `\\ "value\\ ":.*EventTime - \d+` )
5353
5454 defer w .VertexPodPortForward ("input" , 8001 , dfv1 .VertexMetricsPort ).
5555 VertexPodPortForward ("p1" , 8002 , dfv1 .VertexMetricsPort ).
@@ -332,9 +332,9 @@ func (s *FunctionalSuite) TestExponentialBackoffRetryStrategyForPipeline() {
332332 // wait for all the pods to come up
333333 w .Expect ().VertexPodsRunning ().DaemonPodsRunning ()
334334
335- firstRetryLog := fmt .Sprintf ("retry_attempt= %d" , 1 )
336- secondRetryLog := fmt .Sprintf ("retry_attempt= %d" , 2 )
337- thirdRetryLog := fmt .Sprintf ("retry_attempt= %d" , 3 )
335+ firstRetryLog := fmt .Sprintf (` "retry_attempt":" %d"` , 1 )
336+ secondRetryLog := fmt .Sprintf (` "retry_attempt":" %d"` , 2 )
337+ thirdRetryLog := fmt .Sprintf (` "retry_attempt":" %d"` , 3 )
338338 dropLog := "Retries exhausted, dropping messages."
339339 w .Expect ().VertexPodLogContains (vertexName , firstRetryLog , PodLogCheckOptionWithContainer ("numa" ))
340340 w .Expect ().VertexPodLogContains (vertexName , secondRetryLog , PodLogCheckOptionWithContainer ("numa" ))
0 commit comments