apalis-dev / apalis-dev/apalis-pgmq
[Bug](workflow): Delay Operators in workflows dont work
- Lenguaje dominante
- Rust
- Estrellas
- 2
- Forks
- 1
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
### 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_
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.