Skip to content

Commit 7987cb3

Browse files
committed
fix: Move 1.6 snapshot version bump to correct line
It seems a rebase gone awry caused the version bump from #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]>
1 parent ba7b6db commit 7987cb3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/vmm/src/version_map.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,12 @@ lazy_static! {
8181
version_map.set_type_version(VcpuState::type_id(), 2);
8282

8383
version_map.set_type_version(VmState::type_id(), 2);
84-
version_map.set_type_version(VirtioDeviceState::type_id(), 2);
8584

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

88+
version_map.set_type_version(VirtioDeviceState::type_id(), 2);
89+
8990
version_map
9091
};
9192

0 commit comments

Comments
 (0)