Skip to content

Commit

Permalink
* Updated wording in the changelog for max_retries_on_system_failure
Browse files Browse the repository at this point in the history
* Minor log improvement
  • Loading branch information
yadudoc committed Nov 9, 2023
1 parent 487c2b8 commit c933dfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions changelog.d/20231031_230517_yadudoc1729_task_retries_1.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
New Functionality
^^^^^^^^^^^^^^^^^

- ``GlobusComputeEngine`` can now be configured to automatically retrying task failures due
to node failures. Traceback history from all prior attempts is supplied if the last retry
- ``GlobusComputeEngine`` can now be configured to automatically retry task failures when
node failures occur. Traceback history from all prior attempts is supplied if the last retry
attempt fails. Here's a snippet from config.yaml:

```
Expand Down
2 changes: 1 addition & 1 deletion compute_endpoint/globus_compute_endpoint/engines/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def _handle_task_exception(
self._retry_table[task_id]["exception_history"]
):
templated_history = f"""
++++++++++++++++++++ Traceback from attempt:{index} ++++++++++++++++++++
++++++++++++++++++++ Traceback from attempt:{index + 1} ++++++++++++++++++++
{get_error_string(exc=prev_exc)}
------------------------------------------------------------------
"""
Expand Down

0 comments on commit c933dfc

Please sign in to comment.