vkatochka

Results 7 issues of vkatochka

dramatiq 1.7.0 > lsb_release -a No LSB modules are available. Distributor ID: Ubuntu Description: Ubuntu 18.04.3 LTS Release: 18.04 Codename: bionic > dramatiq bwfut -Q home -p1 -t1 --pid-file /var/www/.../tmp/dsrv-home-bwfut.pid...

needs investigation

Example of code: ~~~ function func10() { _echo('before'); } function func20() { _echo('after'); } # Resque::setBackend('localhost:6379'); # Resque_Event::listen('beforePerform','func10'); Resque_Event::listen('afterPerform' ,'func20'); # Resque::enqueue('default','worker',[]); ~~~ * PHP-Resque version: 1.3.6 * PHP version:...

question

If defined max_retries=0, section TRACEBACK not displayed ~~~ @dramatiq.actor(max_retries=0) def worker(): raise ValueError('A very specific bad thing happened') ~~~

bug

~~~ Dramatiq 1.9.0 Redis server v=5.0.7, redis-cli 5.0.7 Ubuntu 18.04.4 LTS Python 3.6.9 ~~~ After requesting the URL http://domain.name/ddb/, the CPU consumption increases to 100%, the size of used RAM...

Hello Can you provide a link to the official docker image of "beanstalk console"? trying to run: > docker run -d -p "80:80" --name beanstalk_console beanstalk_console got the error: ~~~...

**What’s happening?** The server has been under heavy load for more than 60 minutes. I just opened one file in the project and indexing started. How to stop this? *...

Hi! Current phpfmt settings: ```json "phpfmt.psr2": false, "phpfmt.indent_with_space": false, "phpfmt.passes": [ "AllmanStyleBraces" ] ``` Original code: ```php # $e = array('a','b','c','d'); # if (in_array($e,['a','b','c'])) { return; } ``` After formatting:...