Skip to content

Commit efe50de

Browse files
committed
fix: Misc fixes
1 parent 3c52006 commit efe50de

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

shared/connector_linter/connector_linter/checks/vc1xx_config/vc101_config_token.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def check_config_token(ctx: ConnectorContext) -> list[CheckFinding]:
4747
CheckFinding(
4848
message="OPENCTI_TOKEN not found in configuration files",
4949
severity=Severity.ERROR,
50-
suggestion="Add OPENCTI_TOKEN=ChangeMe to docker-compose.yml.",
50+
suggestion="Uncomment or add OPENCTI_TOKEN=ChangeMe to docker-compose.yml.",
5151
),
5252
]
5353

shared/connector_linter/connector_linter/checks/vc1xx_config/vc105_no_absolute_date.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ def _check_code_defaults(ctx: ConnectorContext) -> list[CheckFinding]:
155155
@CheckRegistry.register(
156156
code="VC105",
157157
name="no-absolute-import-date",
158-
description="Import start dates must use ISO duration, not absolute dates",
158+
description="Import start dates should use ISO duration, not absolute dates",
159159
severity=Severity.WARNING,
160160
)
161161
def check_no_absolute_import_date(ctx: ConnectorContext) -> list[CheckFinding]:

0 commit comments

Comments
 (0)