Skip to content

Commit

Permalink
Fix match in protocol write
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkleeman committed Jul 8, 2024
1 parent b62c0a2 commit 9b72604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/wire/wire.go
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ func (s *Protocol) Write(message proto.Message, flags ...Flag) error {
typ = OneWayCallEntryMessageType
case *protocol.AwakeableEntryMessage:
typ = AwakeableEntryMessageType
case *protocol.CompletePromiseEntryMessage:
case *protocol.CompleteAwakeableEntryMessage:
typ = CompleteAwakeableEntryMessageType
case *protocol.RunEntryMessage:
typ = RunEntryMessageType
Expand Down

0 comments on commit 9b72604

Please sign in to comment.