diff options
author | Valery Piashchynski <[email protected]> | 2022-06-01 13:02:15 +0200 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2022-06-01 13:02:15 +0200 |
commit | 9d9eea7f6830a42bb1cb97449bca9a8041269518 (patch) | |
tree | 1cfc1ae786192c02f50f0e54fb3ca1f4f7b9d20f /internal | |
parent | 9abcda533811e9bbd239f60c31e1d0dcc41d743e (diff) |
chore: add .pid to .gitignore
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'internal')
-rw-r--r-- | internal/cli/stop/command.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/cli/stop/command.go b/internal/cli/stop/command.go index 533f11d6..a5dcc0f0 100644 --- a/internal/cli/stop/command.go +++ b/internal/cli/stop/command.go @@ -49,7 +49,7 @@ func NewCommand(silent *bool, force *bool) *cobra.Command { } if *force { - // RR may lost the signal if we immediately send it + // RR may lose the signal if we immediately send it time.Sleep(time.Second) err = process.Signal(syscall.SIGTERM) if err != nil { |