Skip to content

Commit 17f45ee

Browse files
committed
Adding linting change to remediate ST1005: error strings should not be capitalized (staticcheck)
1 parent 38456f0 commit 17f45ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/activities/flowable.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ func (a *FlowableActivity) CreateNormalizedTable(
279279
if err := a.migrateSchemaObjects(ctx, config, tableNameSchemaMapping); err != nil {
280280
// Log as warning but don't fail - schema objects are nice-to-have
281281
logger.Warn("failed to migrate schema objects (indexes, triggers, constraints)", slog.Any("error", err))
282-
a.Alerter.LogFlowWarning(ctx, config.FlowName, fmt.Errorf("Schema object migration failed: %w", err))
282+
a.Alerter.LogFlowWarning(ctx, config.FlowName, fmt.Errorf("schema object migration failed: %w", err))
283283
}
284284
}
285285

0 commit comments

Comments
 (0)