Avner Cohen

Results 54 comments of Avner Cohen
trafficstars

@dandavison Thanks for the time and effort. First, I have checked back and seems like I got a bit confused, I actually meant "--color-words" and not "word-diff". That being said,...

Got the exact same error after upgrading to 5.0.0. This is not constant, and probably 99% of requests go just fine. Happy to provide additional data as needed.

Thanks for trying to help on this, much appreciated. We are using a very basic setup of: ```python influx_client = InfluxDBClient(server_name, http_port, username, password, database, use_udp=True, udp_port=udp_port) self.influx_client.write_points([...]) ``` To...

Sure. will provide everything needed, was hoping this would point to a specific change and ring a bell. I'll try to create a proper repro example.

@thedrow Any idea maybe what is the source of this regression? Can this be avoided all together?

@thedrow First thing firsts, the issue around /dev/shm is not related here, you can see that in my original issue gthe permission denied is on - /tmp/pymp I created a...

Correct, original issue is outside of docker. It is related to the specific umask assigned to the forked process: https://github.com/AvnerCohen/repro-billiard-288/blob/master/runner.py#L4 But I can't seem to figure out why this happens...

I am not sure how relevant is it to other people and cases, in the repro I created (https://github.com/AvnerCohen/repro-billiard-288) the issue and the fix is: ```python import os pid =...

BTW - looking at the code changes in the faulty commit (https://github.com/celery/billiard/commit/241c0d4782ba6c24bd5f2777ed5d1e084d39501c) I am guessing the change is in Line 828 ``` with on_ready_counter.get_lock(): ``` Haven't drilled down, but I...

4 years later.. Setting empty include_paths seems to resolve this issue. It's not perfect and might bring some other noise, but atleast it does not hide exception stack.