diff options
Diffstat (limited to 'routers/private/manager_windows.go')
-rw-r--r-- | routers/private/manager_windows.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/private/manager_windows.go b/routers/private/manager_windows.go index a8a477313f..014018a539 100644 --- a/routers/private/manager_windows.go +++ b/routers/private/manager_windows.go @@ -25,5 +25,5 @@ func Restart(ctx *context.PrivateContext) { // Shutdown causes the server to perform a graceful shutdown func Shutdown(ctx *context.PrivateContext) { graceful.GetManager().DoGracefulShutdown() - ctx.PlainText(http.StatusOK, []byte("success")) + ctx.PlainText(http.StatusOK, "success") } |