@@ -255,7 +255,7 @@ func (config *NetworkingTestConfig) DialFromContainer(protocol, dialCommand, con
255
255
var output map [string ][]string
256
256
if err := json .Unmarshal ([]byte (stdout ), & output ); err != nil {
257
257
framework .Logf ("WARNING: Failed to unmarshal curl response. Cmd %v run in %v, output: %s, err: %v" ,
258
- cmd , config .HostTestContainerPod .Name , stdout , err )
258
+ cmd , config .TestContainerPod .Name , stdout , err )
259
259
continue
260
260
}
261
261
@@ -313,11 +313,11 @@ func (config *NetworkingTestConfig) GetEndpointsFromContainer(protocol, containe
313
313
// we confirm unreachability.
314
314
framework .Logf ("Failed to execute %q: %v, stdout: %q, stderr: %q" , cmd , err , stdout , stderr )
315
315
} else {
316
- framework .Logf ("Tries: %d, in try: %d, stdout: %v, stderr: %v, command run in: %#v" , tries , i , stdout , stderr , config .HostTestContainerPod )
316
+ framework .Logf ("Tries: %d, in try: %d, stdout: %v, stderr: %v, command run in: %#v" , tries , i , stdout , stderr , config .TestContainerPod )
317
317
var output map [string ][]string
318
318
if err := json .Unmarshal ([]byte (stdout ), & output ); err != nil {
319
319
framework .Logf ("WARNING: Failed to unmarshal curl response. Cmd %v run in %v, output: %s, err: %v" ,
320
- cmd , config .HostTestContainerPod .Name , stdout , err )
320
+ cmd , config .TestContainerPod .Name , stdout , err )
321
321
continue
322
322
}
323
323
0 commit comments