maybe a concurrency problem?
Summuss opened this issue · 6 comments
Summuss commented
When following two statements of m.readChs.Store(m.ID, readerCh)
run conrrently, will any readerCh
be override by the other with the same m.Id
? If so the readerCh
overrided won't be able to receive message.
// ListDaemons lists all active daemons.
func (m *Daemon) ListDaemons(ctx context.Context, in *proto.ListDaemonsInput) (out *proto.ListDaemonsOutput, err error) {
//segment1
readerCh := make(chan *types.WebsocketMessage)
m.readChs.Store(m.ID, readerCh)
m.writeCh <- &types.WebsocketMessage{
Action: types.ActionListDaemonsRequest,
UserID: m.ID,
Message: "list active daemons",
}
//.........
}
case <-m.forceUpdate:
log.Println("received force status updates")
//segment2
readerCh := make(chan *types.WebsocketMessage)
m.readChs.Store(m.ID, readerCh)
changkun commented
m.ID is guaranteed to be globally unique.
Summuss commented
For one daemon instance, m.readChs.Store(m.ID, readerCh)
in rpc service and that in watchOfficeStatus would have the same m.ID
. Is that so?
changkun commented
Yes, I think so.
changkun commented
Are you thinking that if readerCh was overwritten then the ListDaemon, for instance, will block forever?
Summuss commented
Yes, I‘m afraid of that situation.
changkun commented
I evaluated the case, and I think you are right, a patch to fix the issue is on the way. Thanks a lot for the report.