Skip to content

Commit

Permalink
lint update
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Oct 3, 2024
1 parent 9e393c2 commit 0957bee
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
15 changes: 10 additions & 5 deletions src/main/aerospike.c
Original file line number Diff line number Diff line change
Expand Up @@ -502,15 +502,20 @@ static struct module_constant_name_to_value module_constants[] = {
{"LOG_LEVEL_TRACE", .value.integer = AS_LOG_LEVEL_TRACE},

{"MRT_COMMIT_OK", .value.integer = AS_COMMIT_OK},
{"MRT_COMMIT_ALREADY_ATTEMPTED", .value.integer = AS_COMMIT_ALREADY_ATTEMPTED},
{"MRT_COMMIT_ALREADY_ATTEMPTED",
.value.integer = AS_COMMIT_ALREADY_ATTEMPTED},
{"MRT_COMMIT_VERIFY_FAILED", .value.integer = AS_COMMIT_VERIFY_FAILED},
{"MRT_COMMIT_MARK_ROLL_FORWARD_ABANDONED", .value.integer = AS_COMMIT_MARK_ROLL_FORWARD_ABANDONED},
{"MRT_COMMIT_ROLL_FORWARD_ABANDONED", .value.integer = AS_COMMIT_ROLL_FORWARD_ABANDONED},
{"MRT_COMMIT_MARK_ROLL_FORWARD_ABANDONED",
.value.integer = AS_COMMIT_MARK_ROLL_FORWARD_ABANDONED},
{"MRT_COMMIT_ROLL_FORWARD_ABANDONED",
.value.integer = AS_COMMIT_ROLL_FORWARD_ABANDONED},
{"MRT_COMMIT_CLOSE_ABANDONED", .value.integer = AS_COMMIT_CLOSE_ABANDONED},

{"MRT_ABORT_OK", .value.integer = AS_ABORT_OK},
{"MRT_ABORT_ALREADY_ATTEMPTED", .value.integer = AS_ABORT_ALREADY_ATTEMPTED},
{"MRT_ABORT_ROLL_BACK_ABANDONED", .value.integer = AS_ABORT_ROLL_BACK_ABANDONED},
{"MRT_ABORT_ALREADY_ATTEMPTED",
.value.integer = AS_ABORT_ALREADY_ATTEMPTED},
{"MRT_ABORT_ROLL_BACK_ABANDONED",
.value.integer = AS_ABORT_ROLL_BACK_ABANDONED},
{"MRT_ABORT_CLOSE_ABANDONED", .value.integer = AS_ABORT_CLOSE_ABANDONED},

{"JOB_SCAN", .is_str_value = true, .value.string = "scan"},
Expand Down

0 comments on commit 0957bee

Please sign in to comment.