Skip to content

Commit 01800c0

Browse files
committed
Correct the error code id
1 parent d549568 commit 01800c0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

core/src/main/java/com/scalar/db/common/error/CoreError.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -912,13 +912,13 @@ public enum CoreError implements ScalarDbError {
912912
DATA_LOADER_CONFIG_FILE_PATH_BLANK(
913913
Category.USER_ERROR, "0204", "Config file path must not be blank", "", ""),
914914
DATA_LOADER_INVALID_DATA_CHUNK_SIZE(
915-
Category.USER_ERROR, "0206", "Data chunk size must be greater than 0", "", ""),
915+
Category.USER_ERROR, "0205", "Data chunk size must be greater than 0", "", ""),
916916
DATA_LOADER_INVALID_TRANSACTION_SIZE(
917-
Category.USER_ERROR, "0207", "Transaction size must be greater than 0", "", ""),
917+
Category.USER_ERROR, "0206", "Transaction size must be greater than 0", "", ""),
918918
DATA_LOADER_INVALID_MAX_THREADS(
919-
Category.USER_ERROR, "0208", "Number of max threads must be greater than 0", "", ""),
919+
Category.USER_ERROR, "0207", "Number of max threads must be greater than 0", "", ""),
920920
DATA_LOADER_INVALID_DATA_CHUNK_QUEUE_SIZE(
921-
Category.USER_ERROR, "0209", "Data chunk queue size must be greater than 0", "", ""),
921+
Category.USER_ERROR, "0208", "Data chunk queue size must be greater than 0", "", ""),
922922

923923
//
924924
// Errors for the concurrency error category

0 commit comments

Comments
 (0)