We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fbb660d + 23ac0f4 commit ddafcb2Copy full SHA for ddafcb2
protocol/protocol.go
@@ -643,7 +643,8 @@ func (o *Operation) UnmarshalBinary(body []byte) error {
643
case TagCustomFuncName:
644
o.CustomFuncName = string(data)
645
default:
646
- return fmt.Errorf("unknown tag: %02x", tag)
+ // Silently ignore any unknown tags (to allow for new tags to be gradually added to the protocol).
647
+ continue
648
}
649
650
// only use tag as an index in seen after we've validated that it's a tag
0 commit comments