From cf7c7ffbb41f3e24570c0adff199473c56b76491 Mon Sep 17 00:00:00 2001 From: ghe0 Date: Fri, 30 May 2025 22:59:15 +0300 Subject: [PATCH] remove dashes from VM names this is required for forwards compatibility with the surreal upgrade --- src/data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.rs b/src/data.rs index afa825a..afea395 100644 --- a/src/data.rs +++ b/src/data.rs @@ -901,7 +901,7 @@ impl BrainData { }); return; } - req.uuid = uuid::Uuid::new_v4().to_string(); + req.uuid = uuid::Uuid::new_v4().to_string().replace("-", ""); info!("Inserting new vm request in memory: {req:?}"); self.tmp_newvm_reqs .insert(req.uuid.clone(), (req.clone(), tx));