From 65c31d49f967c9b1da0984897be08f6238bc7705 Mon Sep 17 00:00:00 2001 From: Tomas Tomecek Date: Tue, 28 Aug 2018 14:12:32 +0200 Subject: podman,varlink: inform user about --timeout 0 Signed-off-by: Tomas Tomecek Closes: #1363 Approved by: rhatdan --- cmd/podman/varlink.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd') diff --git a/cmd/podman/varlink.go b/cmd/podman/varlink.go index 4e6d76c7e..2b3891aec 100644 --- a/cmd/podman/varlink.go +++ b/cmd/podman/varlink.go @@ -75,7 +75,7 @@ func varlinkCmd(c *cli.Context) error { if err = service.Listen(args[0], timeout); err != nil { switch err.(type) { case varlink.ServiceTimeoutError: - logrus.Infof("varlink service expired (use --timeout to increase session time beyond %d ms)", c.Int64("timeout")) + logrus.Infof("varlink service expired (use --timeout to increase session time beyond %d ms, 0 means never timeout)", c.Int64("timeout")) return nil default: return errors.Errorf("unable to start varlink service") -- cgit v1.2.3-54-g00ecf