Skip to content

Commit

Permalink
fix: Move 1.6 snapshot version bump to correct line
Browse files Browse the repository at this point in the history
It seems a rebase gone awry caused the version bump from firecracker-microvm#3557 to be
considered as part of 1.5, even though it will only land with 1.6. Swap
the two lines to unblock CI.

Signed-off-by: Patrick Roy <[email protected]>
  • Loading branch information
roypat committed Oct 12, 2023
1 parent feb1c3c commit 63e7a56
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/vmm/src/version_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,12 @@ lazy_static! {
version_map.set_type_version(VcpuState::type_id(), 2);

version_map.set_type_version(VmState::type_id(), 2);
version_map.set_type_version(VirtioDeviceState::type_id(), 2);

// v1.6 state change mappings
version_map.new_version();

version_map.set_type_version(VirtioDeviceState::type_id(), 2);

version_map
};

Expand Down

0 comments on commit 63e7a56

Please sign in to comment.