|
@@ -1105,7 +1105,7 @@ def uid_status(request):
|
|
|
qs = UidSetModel.objects.filter(uid=uid).values('uid', 'detect_status', 'detect_interval', 'version', 'ucode',
|
|
|
'p2p_region', 'tz', 'video_code', 'channel', 'cloud_vod', 'id',
|
|
|
'detect_group', 'is_alexa', 'region_alexa', 'is_ptz',
|
|
|
- 'msg_notify')
|
|
|
+ 'msg_notify', 'new_detect_interval')
|
|
|
|
|
|
# 调试
|
|
|
debugOnes = int(time.time())
|
|
@@ -1126,6 +1126,7 @@ def uid_status(request):
|
|
|
data = {
|
|
|
'push_status': detect_status, # 推送状态
|
|
|
'push_interval': qs[0]['detect_interval'], # 推送间隔
|
|
|
+ 'new_push_interval': qs[0]['new_detect_interval'], # 新推送间隔
|
|
|
'ucode': qs[0]['ucode'],
|
|
|
'version': qs[0]['version'],
|
|
|
'p2p_region': qs[0]['p2p_region'],
|