Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(#64) Support tasks retry & propagate raised exception #65

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Dec 3, 2023

  1. (#64) Support tasks retry & propagate raised exception

    For documentation, see:
    1. Docstring of `task.task`
    2. Tests in `tests.test_task` e.g. `test_retry_as_per_task_definition`
    3. Sample usages in `tests.apps.simple_app` e.g. `append_to_file`
    
    Changelist:
    
    * Formalize serialization and deserialization
    * Serialize & deserialize exceptions correctly
    * Encapsulate retry & retry_on in a new dict 'options'
    * Implement serde for AsyncResult
    * Ensure generated file deleted after test
    * Add jsonpickle to toml file
    * Exclude `if TYPE_CHECKING:` from coverage
    * Add test for singleton
    * Add logging for worker
    * Wrap all constants inside `Config` class
    
    Signed-off-by: Imran Ariffin <[email protected]>
    imranariffin committed Dec 3, 2023
    Configuration menu
    Copy the full SHA
    4d4c0c0 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2024

  1. Configuration menu
    Copy the full SHA
    af06338 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ce851d7 View commit details
    Browse the repository at this point in the history
  3. Fixup prev

    imranariffin committed Mar 10, 2024
    Configuration menu
    Copy the full SHA
    a4612ce View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    a21c251 View commit details
    Browse the repository at this point in the history
  5. Avoid retrying forever

    imranariffin committed Mar 10, 2024
    Configuration menu
    Copy the full SHA
    5bd0afa View commit details
    Browse the repository at this point in the history