From 1fdaebe4c6f156f193d78c24470e37b65ea8337d Mon Sep 17 00:00:00 2001 From: Benjamin Wenger <ben@privategrity.com> Date: Tue, 28 Dec 2021 06:21:43 +0000 Subject: [PATCH] fixed HasRunningProcessies --- api/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/client.go b/api/client.go index 1a3840abe..027188742 100644 --- a/api/client.go +++ b/api/client.go @@ -529,7 +529,7 @@ func (c *Client) NetworkFollowerStatus() Status { // HasRunningProcessies checks if any background threads are running // and returns true if one or more are func (c *Client) HasRunningProcessies() bool { - return c.followerServices.stoppable.IsStopped() + return !c.followerServices.stoppable.IsStopped() } // Returns the health tracker for registration and polling -- GitLab