mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-05 14:07:39 +03:00
Fix test and retry
This commit is contained in:
parent
9eb94a565d
commit
c997e4911a
2 changed files with 10 additions and 19 deletions
|
@ -45,24 +45,16 @@ func newTopic(id string) *topic {
|
|||
}
|
||||
|
||||
// Subscribe subscribes to this topic
|
||||
func (t *topic) Subscribe(s subscriber, userID string, cancel func()) int {
|
||||
max_retries := 5
|
||||
retries := 1
|
||||
func (t *topic) Subscribe(s subscriber, userID string, cancel func()) (subscriberID int) {
|
||||
t.mu.Lock()
|
||||
defer t.mu.Unlock()
|
||||
|
||||
subscriberID := rand.Int()
|
||||
// simple check for existing id in maps
|
||||
for {
|
||||
_, ok := t.subscribers[subscriberID]
|
||||
if ok && retries <= max_retries {
|
||||
subscriberID = rand.Int()
|
||||
retries++
|
||||
} else {
|
||||
for i := 0; i < 5; i++ { // Best effort retry
|
||||
subscriberID = rand.Int()
|
||||
_, exists := t.subscribers[subscriberID]
|
||||
if !exists {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
t.subscribers[subscriberID] = &topicSubscriber{
|
||||
userID: userID, // May be empty
|
||||
subscriber: s,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue