Skip to content

Commit

Permalink
[improve](write) Deafult open redirect (#183)
Browse files Browse the repository at this point in the history
Automatic redirection is turned on by default when streamload is writing.
  • Loading branch information
JNSimba committed Jan 23, 2024
1 parent 1fcf275 commit a0a6998
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,11 @@ public interface ConfigurationOptions {
* Use automatic redirection of fe without explicitly obtaining the be list
*/
String DORIS_SINK_AUTO_REDIRECT = "doris.sink.auto-redirect";
boolean DORIS_SINK_AUTO_REDIRECT_DEFAULT = false;
boolean DORIS_SINK_AUTO_REDIRECT_DEFAULT = true;

/**
* compress_type
*/
String DORIS_SINK_DATA_COMPRESS_TYPE = "doris.sink.properties.compress_type";

}
}

0 comments on commit a0a6998

Please sign in to comment.