apalis-dev / apalis-dev/apalis-pgmq
[Bug](workflow): Delay Operators in workflows dont work
- Langage dominant
- Rust
- Étoiles
- 2
- Forks
- 1
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
### What happened?
Say I have such a workflow:
```rs
let workflow = Workflow::new("test_workflow")
.and_then(task1)
.delay_for(delay)
.and_then(task2)
.and_then(task3);
```
### Expected behavior
The workflow should delay for the specified period
### Steps to reproduce
1. Setup
2. Run the workflow
3. The workflow hangs
### Minimal code example
```rust
let workflow = Workflow::new("test_workflow")
.and_then(task1)
.delay_for(delay)
.and_then(task2)
.and_then(task3);
```
### Version
Other (specify in additional context)
### Environment
- OS:
- Rust version:
- Cargo version:
### Relevant log output
```shell
```
### Additional context
_No response_
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.