Skip to content

Commit

Permalink
[INLONG-9034][Sort] Fix sort redis test with incorrect use of sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
EMsnap committed Nov 23, 2023
1 parent 9581c2e commit 4f89c83
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file added inlong-sort/sort-common.zip
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public Map<String, String> tableOptions() {

options.put(HUDI_OPTION_DATABASE_NAME, dbName);
options.put(HUDI_OPTION_TABLE_NAME, tableName);
if (StringUtils.isNotEmpty(primaryKey)) {
if (StringUtils.isNoneBlank(primaryKey)) {
options.put(HUDI_OPTION_RECORD_KEY_FIELD_NAME, primaryKey);
}
options.put("connector", "hudi-inlong");
Expand Down

0 comments on commit 4f89c83

Please sign in to comment.