Skip to content

Commit 87a9f52

Browse files
authored
Merge pull request #4084 from apostasie/fix-fahedouch-owes-me-a-beer-in-paris
Fix logging regression
2 parents 7efb818 + 4f1d307 commit 87a9f52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/logging/logging.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func WaitForLogger(dataStore, ns, id string) error {
164164
}
165165

166166
func getContainerWait(ctx context.Context, address string, config *logging.Config) (<-chan containerd.ExitStatus, error) {
167-
client, err := containerd.New(address, containerd.WithDefaultNamespace(config.Namespace))
167+
client, err := containerd.New(strings.TrimPrefix(address, "unix://"), containerd.WithDefaultNamespace(config.Namespace))
168168
if err != nil {
169169
return nil, err
170170
}

0 commit comments

Comments
 (0)