Kevin Kreiser
Kevin Kreiser
try with just `make test` adding `-j8` tell its it run up to 8 of them at the same time which can take a long time if you dont actually...
@ismailsunni try this, go into each test and increase the alarm threshold to a large number and let it run. https://github.com/kevinkreiser/prime_server/blob/master/test/http.cpp#L529 are these tests really running for 5 minutes on...
also what OS are you on and what version of zeromq do you have
now even more tests fail: https://github.com/kevinkreiser/prime_server/pull/131#issuecomment-1811583251
hey great to hear from you aga8n! maybe the best place to start would be an example that shows the problem? the worker is on the main thread and it...
ah, that second one is a good catch about the poll timeout. maybe it should be `min(request_timeout, shutdown_delay)` or maybe half that to make sure its not a near miss?...
looks like somehow the choose functor gets called even when its not set (the default)
@chaitu2chowdary Since I have you here what platform are you on? I can't reproduce it on mine or in CI. I'm wondering if somehow `std::function::operator bool()` is broken on certain...
@chaitu2chowdary what is the result of `ldd /usr/local/lib/libprime_server.so.0.7.0`? the ppa version of the library shows: ``` root@31ca0df872aa:/# ldd /usr/lib/x86_64-linux-gnu/libprime_server.so linux-vdso.so.1 (0x00007ffdb25ec000) libzmq.so.5 => /lib/x86_64-linux-gnu/libzmq.so.5 (0x00007fde67227000) libczmq.so.4 => /lib/x86_64-linux-gnu/libczmq.so.4 (0x00007fde671b9000) libcurl.so.4...
ok that was a deadend, sorry about that... honestly i know how to fix it (change the default parameter back to being a lambda) but i dont understand how some...