Fix typo at pkg/windows/service/service.go:94

./windows/service/service.go:94: atleast ==> at least

Signed-off-by: Carlos Eduardo Arango Gutierrez <carangog@redhat.com>
This commit is contained in:
Carlos Eduardo Arango Gutierrez 2022-03-24 07:25:33 -04:00
parent 475f7af1c1
commit 0719483a6c
No known key found for this signature in database
GPG Key ID: A9596BE502663DFD

View File

@ -91,7 +91,7 @@ Loop:
// As per https://docs.microsoft.com/en-us/windows/desktop/services/service-control-handler-function
s <- svc.Status{State: svc.StopPending}
// If we cannot exit gracefully, we really only can exit our process, so atleast the
// If we cannot exit gracefully, we really only can exit our process, so at least the
// service manager will think that we gracefully exited. At the time of writing this comment this is
// needed for applications that do not use signals (e.g. kube-proxy)
if !graceful {