From 2145bcb81e08eae34a34f7e0eb14ae3c794255b3 Mon Sep 17 00:00:00 2001 From: Nick O'Leary Date: Wed, 20 Nov 2024 14:18:33 +0000 Subject: [PATCH] Pass through teamBroker feature flag to project nodes --- lib/launcher.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/launcher.js b/lib/launcher.js index 66efe99..5b6704f 100644 --- a/lib/launcher.js +++ b/lib/launcher.js @@ -195,7 +195,8 @@ class Launcher { url: enabled ? this.config.brokerURL : '', username: enabled ? this.config.brokerUsername : '', password: enabled ? this.config.brokerPassword : '' - } + }, + teamBrokerEnabled: enabled && !!this.settings?.features?.teamBroker } }