summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorruki <[email protected]>2022-05-13 23:27:11 +0800
committerruki <[email protected]>2022-05-13 23:27:11 +0800
commitced902127370a7d81cc563b4d4079cb34ff18ff8 (patch)
tree887b796d069c239d3438c3eab90ff17d61b0e334
parenta59bde3f54633aadc858df58a0803f18044d5bcc (diff)
fix group
-rw-r--r--xmake/modules/private/service/distcc_build/client.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/modules/private/service/distcc_build/client.lua b/xmake/modules/private/service/distcc_build/client.lua
index bb910547f..f79b540b3 100644
--- a/xmake/modules/private/service/distcc_build/client.lua
+++ b/xmake/modules/private/service/distcc_build/client.lua
@@ -125,7 +125,7 @@ function distcc_build_client:disconnect()
-- do disconnect
local hosts = self:hosts()
assert(hosts and #hosts > 0, "hosts not found!")
- local group_name = tostring(self) .. "/connect"
+ local group_name = tostring(self) .. "/disconnect"
scheduler.co_group_begin(group_name, function ()
for _, host in ipairs(hosts) do
scheduler.co_start(self._disconnect_host, self, host)