Skip to content

Commit

Permalink
needed the sleep for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dovholuknf committed Sep 1, 2023
1 parent 83bcd6c commit 3a8b8f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ziti/cmd/edge/quickstart.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import (
"os"
"os/signal"
"syscall"
"time"
)

// newCreateCmd creates a command object for the "create" command
Expand Down Expand Up @@ -110,7 +111,9 @@ func run(out io.Writer, errOut io.Writer) {
}()

fmt.Println("Controller running... Configuring and starting Router...")


time.Sleep(5 * time.Second)

//ziti edge login https://localhost:1280 -u admin -p admin -y
loginCmd := NewLoginCmd(out, errOut)
loginCmd.SetArgs([]string{
Expand Down

0 comments on commit 3a8b8f6

Please sign in to comment.