Handling Test Events
This commit is contained in:
Родитель
d87b207713
Коммит
3d77a11815
|
@ -122,7 +122,9 @@ def process_events(client: oci.streaming.StreamClient, stream_id, initial_cursor
|
|||
if message:
|
||||
event = b64decode(message.value.encode()).decode()
|
||||
logging.info('event details {}'.format(event))
|
||||
if event != 'ok' and event != 'Test':
|
||||
myjson = str(event)
|
||||
if(myjson.startswith("{")):
|
||||
#if event != 'ok' and event != 'Test':
|
||||
event = json.loads(event)
|
||||
if "data" in event:
|
||||
if "request" in event["data"] and event["type"] != "com.oraclecloud.loadbalancer.access":
|
||||
|
|
Двоичный файл не отображается.
Загрузка…
Ссылка в новой задаче