mirror of https://github.com/CIRCL/AIL-framework
fix: [ail sync] fix refresh_ail_instance_connection
parent
f597e1aaa2
commit
7f02ade6a7
|
@ -265,6 +265,8 @@ def refresh_ail_instance_connection(ail_uuid):
|
|||
clients_id = get_client_id_by_ail_uuid(ail_uuid)
|
||||
if clients_id:
|
||||
clients_id = clients_id[0]
|
||||
else:
|
||||
client_id = None
|
||||
launch_required = is_ail_instance_push_enabled(ail_uuid)
|
||||
|
||||
# relaunch
|
||||
|
@ -1176,6 +1178,16 @@ def add_ail_stream_to_sync_importer(ail_stream):
|
|||
# #
|
||||
#### AIL EXCHANGE FORMAT ####
|
||||
|
||||
def is_valid_ail_exchange_format_json(json_obj):
|
||||
try:
|
||||
ail_stream = json.dumps(ail_stream)
|
||||
except ValueError:
|
||||
return False
|
||||
return is_valid_ail_exchange_format(ail_stream)
|
||||
|
||||
def is_valid_ail_exchange_format(ail_stream):
|
||||
pass
|
||||
|
||||
def create_ail_stream(Object):
|
||||
ail_stream = {'format': 'ail',
|
||||
'version': 1,
|
||||
|
|
Loading…
Reference in New Issue