mirror of https://github.com/jumpserver/jumpserver
fix: Disable the applet connection method when all applet hosts have is_active set to False
parent
75df845024
commit
5d1829b998
|
@ -101,7 +101,7 @@ class AppletMethod:
|
|||
from .models import Applet, AppletHost
|
||||
|
||||
methods = defaultdict(list)
|
||||
has_applet_hosts = AppletHost.objects.all().exists()
|
||||
has_applet_hosts = AppletHost.objects.filter(is_active=True).exists()
|
||||
applets = Applet.objects.filter(is_active=True)
|
||||
for applet in applets:
|
||||
for protocol in applet.protocols:
|
||||
|
|
Loading…
Reference in New Issue