Commit 32fd9bb4 authored by ibuler's avatar ibuler

Merge branch 'new_api' into ops

parents 2b3551f1 15f6d5c9
......@@ -5,10 +5,12 @@ import time
from celery import shared_task
from django.core.cache import cache
from django.db.utils import ProgrammingError
from .models import Session
ASSETS_CACHE_KEY = "terminal__session__assets"
USERS_CACHE_KEY = "terminal__session__users"
SYSTEM_USER_CACHE_KEY = "terminal__session__system_users"
......@@ -36,14 +38,18 @@ def get_session_system_user_list():
def set_cache():
while True:
assets = get_session_asset_list()
users = get_session_user_list()
system_users = get_session_system_user_list()
try:
assets = get_session_asset_list()
users = get_session_user_list()
system_users = get_session_system_user_list()
cache.set(ASSETS_CACHE_KEY, assets)
cache.set(USERS_CACHE_KEY, users)
cache.set(SYSTEM_USER_CACHE_KEY, system_users)
time.sleep(10)
cache.set(ASSETS_CACHE_KEY, assets)
cache.set(USERS_CACHE_KEY, users)
cache.set(SYSTEM_USER_CACHE_KEY, system_users)
except ProgrammingError:
pass
finally:
time.sleep(10)
def main():
......@@ -59,4 +65,5 @@ def main():
t.start()
RUNNING = True
# Todo: 不能migrations了
main()
#!/bin/bash
#
for app in users assets perms audits ops applications;do
rm -f ../apps/$app/migrations/00*
cd ../apps
for d in $(ls);do
if [ -d $d ] && [ -d $d/migrations ];then
rm -f $d/migrations/00*
fi
done
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment