From 8aa6585a43ddb0643d8c5b309051039b5f69f277 Mon Sep 17 00:00:00 2001 From: Curtis Vogt Date: Wed, 3 Jul 2024 14:00:25 -0500 Subject: [PATCH] Comment fix --- src/graceful_termination.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graceful_termination.jl b/src/graceful_termination.jl index 6bfca40..be6d49b 100644 --- a/src/graceful_termination.jl +++ b/src/graceful_termination.jl @@ -89,7 +89,7 @@ function graceful_terminator(f; set_entrypoint::Bool=true) # Remove any pre-existing named pipe as otherwise this will cause our `listen` call to # fail. Should be safe to remove this file as it has been reserved for this PID. Only - # should be needed in the scenarion where the K8s pod has been restarted and the + # should be needed in the scenario where the K8s pod has been restarted and the # location of the socket exists in a K8s volume. ispath(socket_path) && rm(socket_path)