Skip to content

Commit

Permalink
[INLONG-11352][SDK] Delete useless enumeration
Browse files Browse the repository at this point in the history
  • Loading branch information
justinwwhuang committed Oct 16, 2024
1 parent e9dba7c commit cf9cef4
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 49 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public final class PatternReplaceUtils {

public static String replace(String pattern, Map<String, String> params) {
if (pattern == null) {
return pattern;
return null;
}
Matcher matcher = REGEX_PATTERN.matcher(pattern);
StringBuffer sb = new StringBuffer();
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public void invoke(DirtyData dirtyData) {

private InlongSdkOptions getOptions(Configure config) {
return InlongSdkOptions.builder()
.inlongManagerAddr(config.get(DIRTY_SIDE_OUTPUT_INLONG_MANAGER))
.inlongManagerAddr(config.get(DIRTY_SIDE_OUTPUT_INLONG_MANAGER_ADDR))
.inlongGroupId(config.get(DIRTY_SIDE_OUTPUT_INLONG_GROUP))
.inlongStreamId(config.get(DIRTY_SIDE_OUTPUT_INLONG_STREAM))
.inlongManagerAuthKey(config.get(DIRTY_SIDE_OUTPUT_INLONG_AUTH_KEY))
Expand Down

0 comments on commit cf9cef4

Please sign in to comment.