Roman Donchenko
Roman Donchenko
### Motivation and context v3 is due to stop working on 2024-11-30: . Note that `artifact-upload@v4` no longer allows multiple jobs of the same workflow to upload an artifact with...
### Motivation and context ### How has this been tested? ### Checklist - [x] I submit my changes into the `develop` branch - ~~[ ] I have created a changelog...
``` import os from rq import Queue from redis import Redis q = Queue(connection=Redis(), is_async=False) job = q.enqueue(os.getcwd) while job.get_status(refresh=False) != 'finished': job.refresh() print(job.ended_at) ``` This prints `None`. If you...
### What does this PR do? It makes Traefik interpret the keys in the `accessLog.fields.names` setting without regard to letter case. E.g. `--accessLog.fields.names.CLIENTHOST=keep` is treated the same as `--accessLog.fields.names.ClientHost=keep`. ###...
In Listing 6.3, there's a line that goes: ```java var header = new JWSHeader(JWSAlgorithm.HS256); ``` Presumably, this should instead be: ```java var header = new JWSHeader(algorithm); ``` since the algorithm...
### Motivation and context Rather than retag the Docker images, it seems like we can just build them with correct tags to start with. ### How has this been tested?...
### Motivation and context My main motivation was really to add a mechanism to statically define periodic jobs in the project configuration (which I need to do for a feature...
### Motivation and context ### How has this been tested? ### Checklist - [x] I submit my changes into the `develop` branch - [ ] I have created a changelog...
### Feature Type - [X] Adding new functionality to Nuclio - [ ] Changing existing functionality in Nuclio - [ ] Removing existing functionality in Nuclio ### Problem Description Currently,...
### Welcome! - [X] Yes, I've searched similar issues on [GitHub](https://github.com/traefik/traefik/issues) and didn't find any. - [X] Yes, I've searched similar issues on the [Traefik community forum](https://community.traefik.io) and didn't find...