rpkak
rpkak
Closes #886 Captures the stdout and the stderr of a job and makes it accessible using `job.stdout` ans `job.stderr`.
The idea is that because there are some configurable things like job class, worker class, instance of redis, logging format, etc. Some of them have to be overgiven each time...
This PR adds a config object as a context manager. The user can update the config by doing: ```python from rq.config import Config with Config(worker_class='rq.SimpleWorker', serializer_class='rq.serializers.JSONSerializer'): # Do things where...
I moved the documentation from [jekyll](https://jekyllrb.com/) to [sphinx](https://www.sphinx-doc.org/) (@nvie #111). This PR is not finished yet (you see that this is a draft PR), because I will change some things...
Added method `job.fail` to fail the job using a method. `job.fail` takes some args to change the failture behavior. Not specifying anything affects the same as raising an exception, apart...
This function would include a new cli command that has arguments similar to curl or wget and sends an authenticated http request to a selected registry host. __Use case__: Using...
**Version**: 4.3.4 **Platform**: Python 3.10.6 on Archlinux with `5.19.5-arch1-1` kernel **Description**: Dockerfile ```dockerfile FROM redis/redis-stack-server:latest RUN mkdir "/configs" \ \ && echo "port 7000" >> "/configs/7000" \ && echo "cluster-enabled...
Goto support works by creating a boolean variable per label, which is false by default. A goto changes this variable to `true` and breaks to the highest common scope of...
### Zig Version 0.10.0, 0.10.1, 0.11.0, 0.12.0, 0.13.0, 0.14.0-dev.541+2e8acdf6f ### Steps to Reproduce and Observed Behavior Execute this code: ```zig export fn foo() void { @compileLog(@TypeOf(@popCount(@as(u64, 0xabc)))); @compileLog(@TypeOf(@clz(@as(u64, 0xabc)))); @compileLog(@TypeOf(@ctz(@as(u64,...