From d2e9ace33c4e0ce6e1cc90e50946646557032919 Mon Sep 17 00:00:00 2001 From: Tobias Fenster Date: Fri, 30 Nov 2018 19:07:42 +0100 Subject: [PATCH] fix typo --- internal/hcs/watcher.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/hcs/watcher.go b/internal/hcs/watcher.go index 6b94bc9ff8..a015f871c8 100644 --- a/internal/hcs/watcher.go +++ b/internal/hcs/watcher.go @@ -26,5 +26,5 @@ func syscallWatcher(description string, syscallCompleted *bool) { if *syscallCompleted { return } - logrus.Warnf("%s: Did not complete within %s. This may indicate a platform issue. If it appears to be making no forward progress, obtain the stacks and see is there is a syscall stuck in the platform API for a significant length of time.", description, timeout.SyscallWatcher) + logrus.Warnf("%s: Did not complete within %s. This may indicate a platform issue. If it appears to be making no forward progress, obtain the stacks and see if there is a syscall stuck in the platform API for a significant length of time.", description, timeout.SyscallWatcher) }