Skip to content

Commit f7b03f5

Browse files
committed
fix(pegboard): unpack global runner config keys correctly
1 parent d1b99aa commit f7b03f5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

engine/packages/pegboard/src/keys/runner_config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,8 +331,8 @@ impl TuplePack for GlobalDataKey {
331331

332332
impl<'de> TupleUnpack<'de> for GlobalDataKey {
333333
fn unpack(input: &[u8], tuple_depth: TupleDepth) -> PackResult<(&[u8], Self)> {
334-
let (input, (_, _, _, dc_label, namespace_id, name)) =
335-
<(usize, usize, usize, u16, Id, String)>::unpack(input, tuple_depth)?;
334+
let (input, (_, _, _, _, dc_label, namespace_id, name)) =
335+
<(usize, usize, usize, usize, u16, Id, String)>::unpack(input, tuple_depth)?;
336336

337337
let v = GlobalDataKey {
338338
dc_label,

0 commit comments

Comments
 (0)