Switch HTTP listen port to 5052

This is a quick-fix to allow gRPC and HTTP to co-exist. In the future I
think we should swap this back to 5051.
This commit is contained in:
Paul Hauner 2019-05-28 12:45:48 +10:00
parent 21ecaddac1
commit 2a04da8bf7
No known key found for this signature in database
GPG Key ID: 5E2CFF9B75FA63DF

View File

@ -21,7 +21,7 @@ impl Default for HttpServerConfig {
fn default() -> Self {
Self {
enabled: false,
listen_address: "127.0.0.1:5051".to_string(),
listen_address: "127.0.0.1:5052".to_string(),
}
}
}