Skip to content

Commit bc5d225

Browse files
committed
Report the real IP (i.e. localhost)
1 parent 9a092ac commit bc5d225

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qemu.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ func NewDriver(hostName, storePath string) drivers.Driver {
206206
}
207207

208208
func (d *Driver) GetIP() (string, error) {
209-
return "", nil
209+
return "127.0.0.1", nil
210210
}
211211

212212
func (d *Driver) GetState() (state.State, error) {

0 commit comments

Comments
 (0)