Changeset 109 in code for trunk/downstream.go
- Timestamp:
- Mar 16, 2020, 2:08:56 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/downstream.go
r108 r109 556 556 var seqPtr *uint64 557 557 if firstDownstream { 558 uc.lock.Lock() 558 559 seq, ok := uc.history[historyName] 560 uc.lock.Unlock() 559 561 if ok { 560 562 seqPtr = &seq … … 584 586 585 587 if lastDownstream { 588 uc.lock.Lock() 586 589 uc.history[historyName] = seq 590 uc.lock.Unlock() 587 591 } 588 592 }()
Note:
See TracChangeset
for help on using the changeset viewer.