Gokhan

Results 22 comments of Gokhan

Thanks for the quick response @Bogdanp! 💐 I have multiple actors scheduled and I'd rather wait for the update than add broker connection closing part to all scheduled actors :)

@Bogdanp not to pressure or anything but, do you have a time in mind for the update? I am just asking to schedule my own release :)

Oh, when you said I thought it was a trivial and planned change, sorry. I would better implement the workaround you suggested then. Thank you @Bogdanp.

@Bogdanp I took your advice and added `rabbitmq.get_broker().connection.close()` to the end of each scheduled task and now I constantly get warnings like this: ``` [2019-07-14 08:06:47,943] [WARNING] dramatiq.worker.WorkerThread: Failed to...

I think I came up with a proper workaround and I wanted to share in case someone else stumbles upon the same issue: ```python import importlib import signal import sys...

Is there anything I can provide to help you reproduce? I tried both the docker image and binary on GNU/Linux (alpine). I also tried environment variable configuration on docker image....

Hey @nikepan, my code is like this: ```python import requests query = """ INSERT INTO table (field1, field 2) VALUES ('{field1}', '{field2}'); """.format( field1=field1, field2=field2, ) requests.post( url='http://clickhouse-bulk-url', params={ 'query':...

Thanks, looking forward to the new release! Do you have a date in mind?

> It's because you send multi line query. At now clickhouse-bulk supports only single line queries. I try to fix in next release Oh interesting. Would it work if I...

Awesome! I can go with that workaround until you release the new version then, thanks a lot @nikepan!