This repository was archived by the owner on Jul 8, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 6
6
4. Fix some event compatibility issues with device server <= Tango 8 (#456)
7
7
5. Fix event field in EventData structure passed to user's callback (broken in Tango 9.3.0 and 9.3.1)
8
8
6. Fix attribute name in EventData structure passed to user's callback for Attribute Config events
9
- 7. Fix a bug occurring when an event is pushed at the same time as an event (re)subscription occurs (#484)
9
+ 7. Fix a bug occurring when an event is pushed at the same time as an event (re)subscription occurs (#484, #485)
10
+ 8. Fix event name (EventData.event) passed to client's Callback after Tango 9 attribute reconnection (#486)
10
11
11
12
9.3.1
12
13
=====
Original file line number Diff line number Diff line change @@ -1469,15 +1469,15 @@ void EventConsumerKeepAliveThread::re_subscribe_after_reconnect(ZmqEventConsumer
1469
1469
1470
1470
event_data = new FwdEventData (epos->second .device ,
1471
1471
domain_name,
1472
- epos-> second . event_name ,
1472
+ ev_name ,
1473
1473
da_copy,
1474
1474
err);
1475
1475
}
1476
1476
else
1477
1477
{
1478
1478
event_data = new FwdEventData (epos->second .device ,
1479
1479
domain_name,
1480
- epos-> second . event_name ,
1480
+ ev_name ,
1481
1481
da,
1482
1482
err);
1483
1483
}
You can’t perform that action at this time.
0 commit comments