-
Notifications
You must be signed in to change notification settings - Fork 41
Open
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation
Description
Hi,
i got a worker running in pyzeebe 2.4.0,
i made the change to have it using pyzeebe 3.0.0
In my code, i replace :
worker = ZeebeWorker(hostname=gateway.hostname, port=gateway.port, secure_connection=scheme )
by
channel = create_insecure_channel(hostname=gateway.hostname, port=gateway.port)
worker = ZeebeWorker(channel)
and i replace
worker.work()
by
loop = asyncio.get_running_loop()
loop.run_until_complete(worker.work())
But, the worker failed with error : no running event loop
what do i missed ?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationImprovements or additions to documentationImprovements or additions to documentation