Skip to content

Commit

Permalink
Remove suppressed error for operate()
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Aug 28, 2023
1 parent 9c48b2c commit 6bd31b9
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/main/client/operate.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,7 @@ static inline bool isExprOp(int op);
if (py_list) { \
Py_DECREF(py_list); \
} \
if (err.code != AEROSPIKE_OK) { \
as_error_update(&err, err.code, NULL); \
goto CLEANUP; \
} \
else if (!py_result) { \
if (err.code == AEROSPIKE_OK && !py_result) { \
return NULL; \
} \
else { \
Expand Down

0 comments on commit 6bd31b9

Please sign in to comment.