wakemaster39
wakemaster39
For the rails plugins at least the issue has to do with the logger format. The request-log-analyzer gem does its best to try and figure out which log format it...
Can you paste the conf file for this? It is likely an issue there since running it from ruby is working.
I believe the issue is that you don't have quotes on your variables. `env.passenger_status /usr/local/bin/passenger-status env.apache_pid_file /var/run/httpd.pid env.passenger_memory_stats /usr/local/bin/passenger-memory-stat` These should be formatted like `env.passenger_status '/usr/local/bin/passenger-status' env.apache_pid_file '/var/run/httpd.pid' env.passenger_memory_stats '/usr/local/bin/passenger-memory-stat'`...
Yes RSS is correct, it must be an issue with FreeBSD and not reporting the RSS. On my linux boxes, you get an output like this. -------- Apache processes ---------...
I just wanted to add an edge case here to be aware of. `poetry show --outdated` compares against the installed lock version and whats available. Starting to use the plugin...
There are two parts to casbin, loading the policy and enforcing a policy. For loading a policy, in theory async could be used for allowing parallel execution while a async...
Well yes and no, the biggest issue here is `async/await` are not callable inside of an `__init__` method and you need to do some special `@classmethod` that would wrap up...
So i'll toss my findings in here rather than creating a new ticket, Python is not Go and performance is approaching 50x time worse than the benchmarks. Just a simple...
I have taken what I created here, generalized it a whole lot and did the needful and wrapped it up into a package. https://pypi.org/project/fastbin/ I will be porting my current...
I vote for just skip, I heavily use and abuse `frozen=True` so a setter would explode if I managed to get into that situation. Could this somehow move into an...