Skip to content

Commit 37458b3

Browse files
committed
Fix date race in storage
1 parent d8a513e commit 37458b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/e2e/storage/testsuites/stress.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ func (t *stressTestSuite) DefineTests(driver TestDriver, pattern testpatterns.Te
181181
default:
182182
pod := l.pods[podIndex]
183183
framework.Logf("Pod %v, Iteration %v/%v", podIndex, j, l.testOptions.NumRestarts-1)
184-
_, err = cs.CoreV1().Pods(pod.Namespace).Create(context.TODO(), pod, metav1.CreateOptions{})
184+
_, err := cs.CoreV1().Pods(pod.Namespace).Create(context.TODO(), pod, metav1.CreateOptions{})
185185
framework.ExpectNoError(err)
186186

187187
err = e2epod.WaitForPodRunningInNamespace(cs, pod)

0 commit comments

Comments
 (0)