We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5d13e11 + 3e8bb6f commit 022ee5eCopy full SHA for 022ee5e
rust/server/src/main.rs
@@ -124,7 +124,7 @@ fn main() {
124
println!("Failed to bind listening port: {}", e);
125
std::process::exit(-1);
126
});
127
- println!("Listening for incoming connections on {}", config.bind_address);
+ println!("Listening for incoming connections on {}{}", config.bind_address, crate::vss_service::BASE_PATH_PREFIX);
128
129
loop {
130
tokio::select! {
rust/server/src/vss_service.rs
@@ -30,7 +30,7 @@ impl VssService {
30
}
31
32
33
-const BASE_PATH_PREFIX: &str = "/vss";
+pub(crate) const BASE_PATH_PREFIX: &str = "/vss";
34
35
impl Service<Request<Incoming>> for VssService {
36
type Response = Response<Full<Bytes>>;
0 commit comments