Skip to content

Commit bb6d60b

Browse files
fix: remove all yml files when delete model (#1980)
* fix: remove all yml files when delete model * chore: add debug --------- Co-authored-by: sangjanai <[email protected]>
1 parent 8d6ea04 commit bb6d60b

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

docker/entrypoint.sh

+4-2
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,15 @@
55
echo "apiServerHost: 0.0.0.0" > /root/.cortexrc
66
echo "enableCors: true" >> /root/.cortexrc
77

8+
# Start the cortex server
9+
cortex start
10+
811
# Install the engine
912
cortex engines install llama-cpp -s /opt/cortex.llamacpp
1013

11-
# Start the cortex server
12-
cortex start
1314
cortex engines list
1415

16+
1517
# Keep the container running by tailing the log files
1618
tail -f /root/cortexcpp/logs/cortex.log &
1719
tail -f /root/cortexcpp/logs/cortex-cli.log &

engine/services/model_service.cc

+9-2
Original file line numberDiff line numberDiff line change
@@ -736,8 +736,15 @@ cpp::result<void, std::string> ModelService::DeleteModel(
736736
fs::path(model_entry.value().path_to_model_yaml));
737737
yaml_handler.ModelConfigFromFile(yaml_fp.string());
738738
auto mc = yaml_handler.GetModelConfig();
739-
// Remove yaml file
740-
std::filesystem::remove(yaml_fp);
739+
// Remove yaml files
740+
for (const auto& entry :
741+
std::filesystem::directory_iterator(yaml_fp.parent_path())) {
742+
if (entry.is_regular_file() && (entry.path().extension() == ".yml")) {
743+
std::filesystem::remove(entry);
744+
CTL_INF("Removed: " << entry.path().string());
745+
}
746+
}
747+
741748
// Remove model files if they are not imported locally
742749
if (model_entry.value().branch_name != "imported" &&
743750
!engine_svc_->IsRemoteEngine(mc.engine)) {

0 commit comments

Comments
 (0)