Chase Bolt

Results 44 comments of Chase Bolt

Correct. As you stated Docker can set additional ENV args so comparison becomes difficult. While we can tell if the args you are specifying exist or not, we can’t tell...

damn that typobot is rough hah. ill fix the failing tests in the morning along with the style issues. let me know what you think about this, personally i need...

not a problem. i will go ahead and move to my own fork. i've been testing extensively and these changes fixed all of the concurrency bugs. in the state the...

whats your thought on bumping the line length to 119? that is closer to the standard these days and django is 119 as well.

github code viewer/editor also defaults to 120. looking at the style remarks, it is complaining on lines that are much shorter than other lines around it and im unsure on...

thats fine, but a huge chunk of this code does not fit the PEP8 line length. can you please look into this and confirm that? it is currently complaining about...

it looks like PEP8 bot got implemented after majority of this code was written and only enforcing these rules on new code comitted.

line lengths are less than 120 chars now. all tests pass and is ready to go.

Three solutions I have come up with so far: 1. Set a concurrency max of 1 for a container (if using cloud run for example) 2. We copy the requested...

There is still an issue with concurrency and `init` on the same module, I have been skirting around this issue by passing `lock=False` to the init method - though I...