Skip to content

Commit 892d700

Browse files
committed
Merge branch '425-host-info' into 'master'
fix(engine): show host info instead of virtualization system (#425) Closes #425 See merge request postgres-ai/database-lab!603
2 parents 218244c + 006c139 commit 892d700

File tree

1 file changed

+2
-2
lines changed
  • engine/internal/retrieval/engine/postgres/tools

1 file changed

+2
-2
lines changed

engine/internal/retrieval/engine/postgres/tools/tools.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,9 +134,9 @@ func AddVolumesToHostConfig(ctx context.Context, docker *client.Client, hostConf
134134
return errors.Wrap(err, "failed to get host info")
135135
}
136136

137-
log.Dbg("Virtualization system: ", hostInfo.VirtualizationSystem)
138-
139137
if IsInDocker() {
138+
log.Dbg("host info: ", hostInfo.Hostname)
139+
140140
inspection, err := docker.ContainerInspect(ctx, hostInfo.Hostname)
141141
if err != nil {
142142
return err

0 commit comments

Comments
 (0)