diff options
author | networkException <git@nwex.de> | 2023-10-03 17:31:40 +0200 |
---|---|---|
committer | networkException <git@nwex.de> | 2023-10-03 17:31:40 +0200 |
commit | 7907a09acc812f857f283d64c988c69d08acd041 (patch) | |
tree | b90797527648ff0d73bd7087b4b95b27938a1fec /src/api/k2v/api_server.rs | |
parent | 8ec6a53b35e5bb742640a77ff282f2474c63af54 (diff) | |
download | garage-7907a09acc812f857f283d64c988c69d08acd041.tar.gz garage-7907a09acc812f857f283d64c988c69d08acd041.zip |
api: allow custom unix bind mode and use 0o220 for admin server
Diffstat (limited to 'src/api/k2v/api_server.rs')
-rw-r--r-- | src/api/k2v/api_server.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/api/k2v/api_server.rs b/src/api/k2v/api_server.rs index 413fd61c..3a032aba 100644 --- a/src/api/k2v/api_server.rs +++ b/src/api/k2v/api_server.rs @@ -42,7 +42,7 @@ impl K2VApiServer { shutdown_signal: impl Future<Output = ()>, ) -> Result<(), GarageError> { ApiServer::new(s3_region, K2VApiServer { garage }) - .run_server(bind_addr, shutdown_signal) + .run_server(bind_addr, None, shutdown_signal) .await } } |