Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tsachiherman committed Feb 20, 2024
1 parent 52391ba commit c7f317a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/api/message/v1/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ func (s *Service) Subscribe(req *proto.SubscribeRequest, stream proto.MessageApi
}()

var streamLock sync.Mutex
for exit := false; exit == false; {
for exit := false; !exit; {
select {
case msg, open := <-sub.messagesCh:
if open {
Expand Down

0 comments on commit c7f317a

Please sign in to comment.