Nuclio Version checks
Issue Description
i am trying to run:
loop = asyncio.get_event_loop()
return loop.run_until_complete(do_polling())
or
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
result = loop.run_until_complete(do_polling())
loop.close()
return result
inside a sync handler
and i get errors such as "RuntimeWarning: coroutine 'snmp_definition..do_polling' was never awaited"
this was reported here: #3310 (comment)
Expected Behavior
asyncio stuff should work as in regular sync python code
Deployment Method
Kubernetes
Nuclio Version
1.13.4
Additional Information
No response