[Update] 添加清除幽灵mysql会话

pull/3582/head
BaiJiangJie 2019-12-31 16:47:25 +08:00
parent e6c369cfd8
commit 75c6047236
1 changed files with 1 additions and 1 deletions

View File

@ -251,7 +251,7 @@ class Session(OrgModelMixin):
return cls.objects.filter(is_finished=False)
def is_active(self):
if self.protocol in ['ssh', 'telnet', 'rdp']:
if self.protocol in ['ssh', 'telnet', 'rdp', 'mysql']:
key = self.ACTIVE_CACHE_KEY_PREFIX.format(self.id)
return bool(cache.get(key))
return True