Sleep for 5 seconds before pushing to registry in tests

Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>

Closes: #576
Approved by: rhatdan
This commit is contained in:
TomSweeneyRedHat
2018-04-02 12:13:08 -04:00
committed by Atomic Bot
parent 0edfce5269
commit 2eb38a0271

View File

@ -2,6 +2,7 @@ package integration
import (
"os"
"time"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@ -59,6 +60,9 @@ var _ = Describe("Podman push", func() {
session.WaitWithDefaultTimeout()
Expect(session.ExitCode()).To(Equal(0))
// Give the registry 5 seconds to warm up before pushing
time.Sleep(5 * time.Second)
push := podmanTest.Podman([]string{"push", "--tls-verify=false", "--remove-signatures", ALPINE, "localhost:5000/my-alpine"})
push.WaitWithDefaultTimeout()
Expect(push.ExitCode()).To(Equal(0))