Catlin
Catlin
@nicowilliams, Sure. ``` ╭─jivanov@irony ~/jq-jq-1.5 ╰─$ make clean; make V=1 1 ↵ rm -f jq test -z "libjq.la " || rm -f libjq.la rm -f ./so_locations rm -rf .libs _libs...
It appears to be so, yes. ``` jq.1: $(srcdir)/jq.1.prebuilt $(AM_V_GEN) cp $^ $@ real_docs: @echo "Ruby dependencies not found, cannot build manpage." > /dev/stderr @echo "Follow the instructions in docs/README.md...
@lyschoening: I wasn't aware of the header but that doesn't sound like the most sane location for that type of information but that is my humble opinion. The StackOverflow API...
I'm getting this: ``` [2018-01-02 13:21:46,478: INFO/ForkPoolWorker-4] worker_mongo.dirty_deeds_mongo[e555476c-d108-4721-b902-10c70bb67ff4]: Working on ^C worker: Hitting Ctrl+C again will terminate all running tasks! worker: Warm shutdown (MainProcess) [2018-01-02 13:23:24,704: INFO/ForkPoolWorker-7] worker_mongo.dirty_deeds_mongo[d75bc84b-6265-45c7-b70a-156172fe5b14]: Working on...
@DomHudson: ```$ celery worker -A worker_mongo -l info --concurrency=4```
@DomHudson, As I mentioned earlier, this isn't Linux so your grep command will not work. There is no OOM condition. These errors *only* occur during shutdown. The `SIGSEGV` may be...
This feature is also something that I would absolutely love!
@jfinkels, thank you for the in-depth response. I would have responded sooner but I wanted my response to be equally as useful. > The performance is atrocious because I had...
What I'm trying to figure out is why I'm getting 683,672 calls to views/base.py->get_all_inclusions() because line 1465 is where my problem is: `to_include = set(chain(map(self.resources_to_include, instances)))` Which happens to be...
@roemhildtg, welcome to Python :) If you're interested, you can do what I did with profiling my Flask application take a look at: http://werkzeug.pocoo.org/docs/0.11/contrib/profiler/ There are limitations to that and...