Skip to content
This repository was archived by the owner on Jul 8, 2022. It is now read-only.

Commit 414ac8e

Browse files
authored
Fix event name passed to client's Callback after Tango 9 reconnection (#486)
(EventData.event: idl5_<event_type> => <event_type>)
1 parent 70aa2b6 commit 414ac8e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

RELEASE_NOTES

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
4. Fix some event compatibility issues with device server <= Tango 8 (#456)
77
5. Fix event field in EventData structure passed to user's callback (broken in Tango 9.3.0 and 9.3.1)
88
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)
1011

1112
9.3.1
1213
=====

cppapi/client/eventkeepalive.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)