Skip to content

Commit

Permalink
chore(scan-identifiers): Explicitly set retries to match comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ferdinandjarisch authored and rumpelsepp committed Jan 31, 2025
1 parent 8e401eb commit 184f166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gallia/commands/scan/uds/identifiers.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ async def perform_scan(self, session: None | int = None) -> None:
and (DID % self.config.check_session == 0)
):
# Check session and try to recover from wrong session (max 3 times), else skip session
if not await self.ecu.check_and_set_session(session):
if not await self.ecu.check_and_set_session(session, retries=3):
logger.error(
f"Aborting scan on session {g_repr(session)}; current DID was {g_repr(DID)}"
)
Expand Down

0 comments on commit 184f166

Please sign in to comment.