Juan Cruz
Juan Cruz
Added the functionality I suggested in issue #204
It would be nice to add the following enhancement: According to PEP8 (https://peps.python.org/pep-0008/#descriptive-naming-styles) when a name causes a conflict with a python reserved word the convention is to add _...
Please read our [contributor guide](https://github.com/conductor-oss/conductor/blob/main/CONTRIBUTING.md) before creating an issue. Also consider discussing your idea on the [discussion forum](https://github.com/conductor-oss/conductor/discussions) first. ## Describe the Feature Request Improve OpenAPI documentation to improve these...
## What are you missing in the docs I see that the following types of tasks are documented in the Open API - SIMPLE - DYNAMIC - FORK_JOIN - FORK_JOIN_DYNAMIC...
**Describe the bug** With the following docker-compose: ``` services: conductor: container_name: conductor image: reg.1u1.it/dockerhub/conductoross/conductor:3.15.0 ports: - 8080:8080 - 5000:5000 networks: - conductor volumes: - ./server/config.properties:/app/config/config.properties healthcheck: test: [ "CMD", "curl","-I"...
**Describe the bug** Some methods return 2xx codes instead of 404 when the task does not exist. For example POST /api/tasks/{task_id}/log -> Return 200 when task does not exists GET...
Please read our [contributor guide](https://github.com/Netflix/conductor/blob/main/CONTRIBUTING.md) before creating an issue. Also consider discussing your idea on the [discussion forum](https://github.com/Netflix/conductor/discussions) first. ## Describe the Feature Request To be able to group in...
Please read our [contributor guide](https://github.com/Netflix/conductor/blob/main/CONTRIBUTING.md) before creating an issue. Also consider discussing your idea on the [discussion forum](https://github.com/Netflix/conductor/discussions) first. ## Describe the Feature Request The input and output definition of...
Describe the bug Updating the status of an IN PROGRESS task to IN PROGRESS returns it to SCHELUDED. Details Conductor version: 3.13.6 To Reproduce Make this call: GET /api/tasks/poll/TASK_TYPE And...
If I have a class with a get method like this, for example: ```python class Example: def get() -> str: return "TEST" ``` And then a test like the following:...