Skip to content

Commit

Permalink
Fix lint warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Anton Litvinov <[email protected]>
  • Loading branch information
Zensey committed Mar 4, 2024
1 parent e6ceefe commit a1657f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eventbus/event_bus.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func (b *simplifiedEventBus) Publish(topic string, data interface{}) {

b.mu.RLock()
ids_ := b.sub[topic]
ids := make([]string, len(ids_))
ids := make([]string, len(ids_))
copy(ids, ids_)
b.mu.RUnlock()

Expand Down

0 comments on commit a1657f7

Please sign in to comment.