Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/50-course/global-prefix-error-celery
This repository aims to reproduce and perform root cause analysis of the production bug on @celery:kombu
https://github.com/50-course/global-prefix-error-celery
Last synced: 24 days ago
JSON representation
This repository aims to reproduce and perform root cause analysis of the production bug on @celery:kombu
- Host: GitHub
- URL: https://github.com/50-course/global-prefix-error-celery
- Owner: 50-Course
- Created: 2024-01-08T09:35:18.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-01-08T17:04:13.000Z (10 months ago)
- Last Synced: 2024-05-01T13:17:23.203Z (6 months ago)
- Language: Dockerfile
- Homepage: https://github.com/celery/kombu/issues/1809
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository aims to reproduce and perform root cause analysis of the production bug:
> Failure for sentinel backend when using `global_prefix` configuration: functools.partial object has not attribute `from_pool`
at Celery - Kombu.
Ref: https://github.com/celery/kombu/issues/1809
Associated patch: https://github.com/celery/kombu/pull/1838
## Installation
To replicate the environment prior to the bug, you should run the following commands on your system:
### Build the image prior to bug:
```sh
$ docker build -f Dockerfile -t celery-prefix-error
```and run with:
```sh
$ docker run -it celery-prefix-error
```### Build the image containing the patch:
```sh
$ docker build -f celery-prefix-patched.Dockerfile -t celery-prefix-patched
```and run with:
```sh
$ docker run -it celery-prefix-patched
```## Bug tracker
Please report error regarding this issue to official `kombu` repository.
Or continue the discussion at: https://github.com/celery/kombu/issues/1809