From: Dominik Csapak <d.csapak@proxmox.com>
To: pdm-devel@lists.proxmox.com
Subject: [pdm-devel] [PATCH datacenter-manager] ui: remote migrate: lxc: add missing 'target-vmid' property
Date: Tue, 7 Jan 2025 12:29:34 +0100 [thread overview]
Message-ID: <20250107112934.1710402-1-d.csapak@proxmox.com> (raw)
while we added that for vms already, it was missing for containers
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
ui/src/widget/migrate_window.rs | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/ui/src/widget/migrate_window.rs b/ui/src/widget/migrate_window.rs
index 1649296..c87cf9a 100644
--- a/ui/src/widget/migrate_window.rs
+++ b/ui/src/widget/migrate_window.rs
@@ -183,6 +183,10 @@ impl PdmMigrateWindow {
.delete_source(value["delete-source"].as_bool().unwrap_or_default())
.restart(true, None);
+ if let Some(Value::Number(vmid)) = value.get("target-vmid") {
+ migrate_opts = migrate_opts.target_vmid(vmid.as_u64().unwrap() as u32);
+ }
+
if form_ctx.read().get_field_checked("detailed-mode") {
match value.get("detail-map") {
Some(Value::Array(list)) => {
--
2.39.5
_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel
next reply other threads:[~2025-01-07 11:29 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-07 11:29 Dominik Csapak [this message]
2025-01-07 12:13 ` Fabian Grünbichler
2025-01-08 12:05 ` [pdm-devel] applied: " Thomas Lamprecht
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250107112934.1710402-1-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pdm-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox