mirror of
https://github.com/EvernodeXRPL/sashimono.git
synced 2026-07-30 10:30:23 +00:00
Sashi cli and rootless dockerd fixes (#122)
* Fixed sashi cli create json construction issue * Properly applied rootless slirp4netns port driver. * Added dockerd max-concurrent-downloads. * Changed some debug logs to info.
This commit is contained in:
@@ -876,7 +876,7 @@ namespace hp
|
||||
return -1;
|
||||
}
|
||||
username = output_params.at(1);
|
||||
LOG_DEBUG << "Created new user : " << username << ", uid : " << user_id;
|
||||
LOG_INFO << "Created new user : " << username << ", uid : " << user_id;
|
||||
return 0;
|
||||
}
|
||||
else if (strncmp(output_params.at(output_params.size() - 1).data(), "INST_ERR", 8) == 0) // If error.
|
||||
@@ -913,7 +913,7 @@ namespace hp
|
||||
// const std::string contract_dir = util::get_user_contract_dir(info.username, container_name);
|
||||
if (strncmp(output_params.at(output_params.size() - 1).data(), "UNINST_SUC", 8) == 0) // If success.
|
||||
{
|
||||
LOG_DEBUG << "Deleted the user : " << username;
|
||||
LOG_INFO << "Deleted the user : " << username;
|
||||
return 0;
|
||||
}
|
||||
if (strncmp(output_params.at(output_params.size() - 1).data(), "UNINST_ERR", 8) == 0) // If error.
|
||||
|
||||
Reference in New Issue
Block a user