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

Add communication reconnect delay #700

Merged
merged 1 commit into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/isar/config/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ def __init__(self) -> None:
# Number of attempts to request a task status in monitor before cancelling
REQUEST_STATUS_FAILURE_COUNTER_LIMIT: int = Field(default=3)

# Time allocated to reconnect when failing to retrieve status due to communication
# issues
REQUEST_STATUS_COMMUNICATION_RECONNECT_DELAY: float = Field(default=10)

# Number of attempts to stop the robot before giving up
STOP_ROBOT_ATTEMPTS_LIMIT: int = Field(default=10)

Expand Down
2 changes: 1 addition & 1 deletion src/isar/state_machine/states/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def _run(self) -> None:
)
status = TaskStatus.Failed
else:
time.sleep(self.state_machine.sleep_time)
time.sleep(settings.REQUEST_STATUS_COMMUNICATION_RECONNECT_DELAY)
continue

except RobotTaskStatusException as e:
Expand Down
Loading