Skip to content

Commit db12dbf

Browse files
author
Loïc Hoguin
committed
CQ: Fix 3.13 upgrade error in the message store
The problem was due to a record being modified despite that record being read from disk. To avoid any potential issues the record was put back to the way it used to be, only now we have 3 'unused' fields.
1 parent e2416e5 commit db12dbf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

deps/rabbit/src/rabbit_msg_store.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@
129129
}).
130130

131131
-record(file_summary,
132-
{file, valid_total_size, file_size, locked}).
132+
{file, valid_total_size, unused1, unused2, file_size, locked, unused3}).
133133

134134
-record(gc_state,
135135
{ dir,

0 commit comments

Comments
 (0)