Island: Fix typo occured -> occurred

This commit is contained in:
Mike Salvatore 2022-09-28 14:06:09 -04:00
parent 10954e0a6e
commit c69a414a4d
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class AgentLogs(AbstractResource):
try:
log_contents = self._agent_log_repository.get_agent_log(agent_id)
except UnknownRecordError as err:
logger.error(f"Error occured while getting agent log: {err}")
logger.error(f"Error occurred while getting agent log: {err}")
return {}, HTTPStatus.NOT_FOUND
return log_contents, HTTPStatus.OK