Skip to content

Commit 006c139

Browse files
committed
fix(engine): show host info instead of virtualization system (#425)
1 parent 633ba5b commit 006c139

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
@@ -133,9 +133,9 @@ func AddVolumesToHostConfig(ctx context.Context, docker *client.Client, hostConf
133133
return errors.Wrap(err, "failed to get host info")
134134
}
135135

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

0 commit comments

Comments
 (0)