fix
All checks were successful
BlockStorage/repertory/pipeline/head This commit looks good

This commit is contained in:
Scott E. Graves 2025-03-02 17:59:09 -06:00
parent 78037ed74f
commit 4a598d00d1

View File

@ -210,7 +210,7 @@ void handlers::handle_get_mount_status(auto &&req, auto &&res) const {
void handlers::handle_post_mount(auto &&req, auto &&res) const {
auto type = req.get_param_value("type");
auto name = req.get_param_value("name");
auto location = req.get_param_value("location");
auto location = utils::path::absolute(req.get_param_value("location"));
auto unmount = utils::string::to_bool(req.get_param_value("unmount"));
auto prov = provider_type_from_string(type);