We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7322b commit ef9e420Copy full SHA for ef9e420
1 file changed
rust/operator-binary/src/hbase_controller.rs
@@ -593,16 +593,8 @@ fn build_rolegroup_config_map(
593
}
594
HbaseRole::RestServer => {
595
hbase_site_config.insert(
596
- "hbase.rest.hostname".to_string(),
597
- "${env:HBASE_SERVICE_HOST}".to_string(),
598
- );
599
- hbase_site_config.insert(
600
- "hbase.rest.port".to_string(),
601
- "${env:HBASE_SERVICE_PORT}".to_string(),
602
603
604
- "hbase.rest.info.port".to_string(),
605
- "${env:HBASE_INFO_PORT}".to_string(),
+ "hbase.rest.endpoint".to_string(),
+ "${env:HBASE_SERVICE_HOST}:${env:HBASE_SERVICE_PORT}".to_string(),
606
);
607
608
};
0 commit comments