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 664. Fix some event compatibility issues with device server <= Tango 8 (#456)
775. Fix event field in EventData structure passed to user's callback (broken in Tango 9.3.0 and 9.3.1)
886. 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)
1011
11129.3.1
1213=====
Original file line number Diff line number Diff line change @@ -1469,15 +1469,15 @@ void EventConsumerKeepAliveThread::re_subscribe_after_reconnect(ZmqEventConsumer
14691469
14701470 event_data = new FwdEventData (epos->second .device ,
14711471 domain_name,
1472- epos-> second . event_name ,
1472+ ev_name ,
14731473 da_copy,
14741474 err);
14751475 }
14761476 else
14771477 {
14781478 event_data = new FwdEventData (epos->second .device ,
14791479 domain_name,
1480- epos-> second . event_name ,
1480+ ev_name ,
14811481 da,
14821482 err);
14831483 }
You can’t perform that action at this time.
0 commit comments