1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-29 18:50:08 +03:00

M #-: onedb change-live --append with multiindex

do not update the matching elements on append

(cherry picked from commit d266248a49edc392413fe643a57da85bd501e16b)
This commit is contained in:
Anton Todorov 2023-04-03 10:29:08 +03:00 committed by Ruben S. Montero
parent de7d5c88f5
commit 93abf23883
No known key found for this signature in database
GPG Key ID: A0CEA6FA880A1D87

View File

@ -451,7 +451,9 @@ class OneDBLive
if options[:delete]
el.remove
else
el.content = value
if !options[:append]
el.content = value
end
end
end