Skip to content
Open
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
2 changes: 1 addition & 1 deletion fixbackend/cloud_accounts/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class CloudAccountRead(BaseModel):
privileged: bool = Field(description="If privileged, the account can do some administrative tasks")
last_scan_started_at: Optional[datetime] = Field(description="The time when the last scan started")
last_scan_finished_at: Optional[datetime] = Field(description="The time when the last scan finished")
cf_stack_version: Optional[int] = Field(description="The version of the corresponting CF stack")
cf_stack_version: Optional[int] = Field(description="The version of the corresponding CF stack")
errors: Optional[int] = Field(description="Number of errors during the last scan")

@staticmethod
Expand Down
2 changes: 1 addition & 1 deletion fixbackend/domain_events/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class CloudAccountActiveToggled(Event):
@frozen
class CloudAccountScanToggled(Event):
"""
This event is emitted when a cloud account is maarked active/non-active for scanning vulnerabilities.
This event is emitted when a cloud account is marked active/non-active for scanning vulnerabilities.
"""

kind: ClassVar[str] = "cloud_account_scan_toggled"
Expand Down