Skip to content

Commit 6fd9e64

Browse files
- All tests passing.
1 parent 5932311 commit 6fd9e64

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

internal/stackql/execution/mono_valent_execution.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1193,12 +1193,12 @@ func (sp *standardProcessor) Process() ProcessorResponse {
11931193
)
11941194
housekeepingDone = insertPrepResult.IsHousekeepingDone()
11951195
insertPrepErr, hasInsertPrepErr := insertPrepResult.GetError()
1196+
if isSkipResponse && isMutation && httpResponse.StatusCode < 300 {
1197+
return newHTTPProcessorResponse(
1198+
nil, reversalStream, false, nil,
1199+
).WithSuccessMessages([]string{"The operation was despatched successfully"})
1200+
}
11961201
if hasInsertPrepErr {
1197-
if isSkipResponse && isMutation && httpResponse.StatusCode < 300 {
1198-
return newHTTPProcessorResponse(
1199-
nil, reversalStream, false, nil,
1200-
).WithSuccessMessages([]string{"The operation was despatched successfully"})
1201-
}
12021202
return newHTTPProcessorResponse(nil, reversalStream, false, insertPrepErr)
12031203
}
12041204

0 commit comments

Comments
 (0)