From 8fcc9110dcccca50a7d621099185267450f2bcd5 Mon Sep 17 00:00:00 2001 From: webwarrior-ws Date: Tue, 16 Jun 2026 10:47:52 +0200 Subject: [PATCH 1/2] Recognize "creating" VM status In AsyncWaitForVMToBeRunning method. The new status is expected to be added in [1]. Otherwise the code would fail with "Unknown VM status" error. [1] https://github.com/LNVPS/api/pull/114 --- LnVpsProvider.fs | 1 + 1 file changed, 1 insertion(+) diff --git a/LnVpsProvider.fs b/LnVpsProvider.fs index 75b1a6b..33f4e06 100644 --- a/LnVpsProvider.fs +++ b/LnVpsProvider.fs @@ -305,6 +305,7 @@ Invoice for renewal {invoiceInfo}:" // if this is the case, retry later return! loop () | true, "pending" -> return! loop () + | true, "creating" -> return! loop () | true, "running" -> return () | true, unknownStatus -> failwith $"Unknown VM status: '{unknownStatus}'" From 13934394a1dd02ace0c082e4a5b36202b8d8b4d2 Mon Sep 17 00:00:00 2001 From: webwarrior-ws Date: Tue, 16 Jun 2026 10:48:26 +0200 Subject: [PATCH 2/2] Bump version to 0.0.38 --- sdk/dotnet/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/dotnet/version.txt b/sdk/dotnet/version.txt index 7e4eee2..311e80e 100644 --- a/sdk/dotnet/version.txt +++ b/sdk/dotnet/version.txt @@ -1 +1 @@ -0.0.37 \ No newline at end of file +0.0.38 \ No newline at end of file