Skip to content

Commit 39740fa

Browse files
committed
add generic properties for listener endpoints
1 parent 8b3e650 commit 39740fa

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

rust/operator-binary/src/hbase_controller.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -595,6 +595,16 @@ fn build_rolegroup_config_map(
595595
"org.apache.hadoop.hbase.ipc.BlockingRpcClient".to_string(),
596596
);
597597

598+
// Set listener endpoint information with generic properties
599+
hbase_site_config.insert(
600+
"hbase.listener.endpoint".to_string(),
601+
"${HBASE_LISTENER_ENDPOINT}".to_string(),
602+
);
603+
hbase_site_config.insert(
604+
"hbase.info.port".to_string(),
605+
"${HBASE_INFO_PORT}".to_string(),
606+
);
607+
598608
match hbase_role {
599609
HbaseRole::Master => {
600610
hbase_site_config.insert(

0 commit comments

Comments
 (0)