Skip to content

Commit

Permalink
qemu: increase the timeout for detecting the IP address
Browse files Browse the repository at this point in the history
Signed-off-by: Raghavendra Talur <[email protected]>
  • Loading branch information
raghavendra-talur committed Sep 8, 2023
1 parent 1e8a1c5 commit 08233d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/drivers/qemu/qemu.go
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ func (d *Driver) Start() error {
return nil
}
// Implement a retry loop because IP address isn't added to dhcp leases file immediately
for i := 0; i < 30; i++ {
for i := 0; i < 60; i++ {
log.Debugf("Attempt %d", i)
err = getIP()
if err == nil {
Expand Down

0 comments on commit 08233d0

Please sign in to comment.