Skip to content

Commit 3efe10c

Browse files
NathanFlurryMasterPtato
authored andcommitted
fix(pegboard): unpack global runner config keys correctly
1 parent 721c022 commit 3efe10c

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
@@ -334,8 +334,8 @@ impl TuplePack for GlobalDataKey {
334334

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

340340
let v = GlobalDataKey {
341341
dc_label,

0 commit comments

Comments
 (0)