fix: remove unnecessary protocol (#386)

This commit is contained in:
元波
2022-11-03 17:14:08 +08:00
committed by GitHub
parent 1fad67cf4d
commit 77233c20e1

View File

@@ -40,7 +40,7 @@ impl Default for FrontendOptions {
impl FrontendOptions {
// TODO(LFC) Get Datanode address from Meta.
pub(crate) fn datanode_grpc_addr(&self) -> String {
"http://127.0.0.1:3001".to_string()
"127.0.0.1:3001".to_string()
}
}