Skip to content

Commit a751ad5

Browse files
authored
Undo flow error on connection to source down (#4066)
Introduced in #3996 Turned out to be too noisy so we need to solve that first
1 parent 66f2062 commit a751ad5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flow/activities/flowable_core.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ func syncCore[TPull connectors.CDCPullConnectorCore, TSync connectors.CDCSyncCon
142142
}
143143

144144
if err := srcConn.ConnectionActive(ctx); err != nil {
145-
return nil, a.Alerter.LogFlowError(ctx, flowName, fmt.Errorf("connection to source down: %w", err))
145+
return nil, fmt.Errorf("connection to source down: %w", err)
146146
}
147147

148148
batchSize := options.BatchSize

0 commit comments

Comments
 (0)