From 7cc16740a56072465b3938cbb9cd326d40bd7ba9 Mon Sep 17 00:00:00 2001
From: zeripath <art27@cantab.net>
Date: Sun, 15 Dec 2019 13:15:17 +0000
Subject: [PATCH] Fix missed change to GetManager() (#9361)

---
 modules/graceful/net_windows.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/modules/graceful/net_windows.go b/modules/graceful/net_windows.go
index e191eca123..3fc1433491 100644
--- a/modules/graceful/net_windows.go
+++ b/modules/graceful/net_windows.go
@@ -13,7 +13,7 @@ import "net"
 // On windows this is basically just a shim around net.Listen.
 func GetListener(network, address string) (net.Listener, error) {
 	// Add a deferral to say that we've tried to grab a listener
-	defer Manager.InformCleanup()
+	defer GetManager().InformCleanup()
 
 	return net.Listen(network, address)
 }