Skip to content

Commit

Permalink
Remove the restriction of port between 1024 and 10000
Browse files Browse the repository at this point in the history
Change-Id: I0a92ae4aebde3318023e0f03f289d279ed2526b4
  • Loading branch information
Linary authored and zhoney committed Dec 13, 2018
1 parent f2c99cf commit 73d1f2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public static synchronized CassandraOptions instance() {
new ConfigOption<>(
"cassandra.port",
"The seeds port address of cassandra cluster.",
rangeInt(1024, 10000),
rangeInt(1, 65535),
9042
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public static synchronized HbaseOptions instance() {
new ConfigOption<>(
"hbase.port",
"The port address of HBase zookeeper.",
rangeInt(1024, 10000),
rangeInt(1, 65535),
2181
);

Expand Down

0 comments on commit 73d1f2d

Please sign in to comment.