mirror of https://github.com/jumpserver/jumpserver
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
866 B
29 lines
866 B
from django.core.management.base import BaseCommand
|
|
|
|
from assets.signal_handlers.node_assets_mapping import expire_node_assets_mapping as _expire_node_assets_mapping
|
|
from orgs.caches import OrgResourceStatisticsCache
|
|
from orgs.models import Organization
|
|
|
|
|
|
def expire_node_assets_mapping():
|
|
org_ids = Organization.objects.all().values_list('id', flat=True)
|
|
org_ids = [*org_ids, '00000000-0000-0000-0000-000000000000']
|
|
|
|
for org_id in org_ids:
|
|
_expire_node_assets_mapping(org_ids=(org_id,))
|
|
|
|
|
|
def expire_org_resource_statistics_cache():
|
|
orgs = Organization.objects.all()
|
|
for org in orgs:
|
|
cache = OrgResourceStatisticsCache(org)
|
|
cache.expire()
|
|
|
|
|
|
class Command(BaseCommand):
|
|
help = 'Expire caches'
|
|
|
|
def handle(self, *args, **options):
|
|
expire_node_assets_mapping()
|
|
expire_org_resource_statistics_cache()
|