Skip to content

Commit c1acdf7

Browse files
author
Daisuke Kanda
committed
fix
Signed-off-by: Daisuke Kanda <daisuke.kanda@datachain.jp>
1 parent c87442a commit c1acdf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/naive-strategy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ func (st *NaiveStrategy) ProcessTimeoutPackets(ctx context.Context, src, dst *Pr
311311
dstPackets = append(dstPackets, srcTimeoutPacket)
312312
}
313313
if dstTimeoutPacket != nil {
314-
srcPackets = append(dstPackets, dstTimeoutPacket)
314+
srcPackets = append(srcPackets, dstTimeoutPacket)
315315
}
316316
rp.Src = srcPackets
317317
rp.Dst = dstPackets

0 commit comments

Comments
 (0)