From 81f006f7143ea3917ea20b8fd954669dbd6bf6b4 Mon Sep 17 00:00:00 2001 From: 1maple1 <160027655+1maple1@users.noreply.github.com> Date: Tue, 20 Aug 2024 14:34:43 +0000 Subject: [PATCH] Unique systems on local garden only for dependency check --- brewtils/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brewtils/plugin.py b/brewtils/plugin.py index eb385c26..87e51a92 100644 --- a/brewtils/plugin.py +++ b/brewtils/plugin.py @@ -382,7 +382,7 @@ def _hook(exc_type, exc_value, traceback): def get_system_dependency(self, require, timeout=300): wait_time = 0.1 while timeout > 0: - system = self._ez_client.find_unique_system(name=require) + system = self._ez_client.find_unique_system(name=require, local=True) if ( system and system.instances