You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm wanting to receive notifications from ADS logs on port 100. When I create a notification with a max length of 1024 I get this error message: "Warning: Notification sample size: 101 doesn't match: 1024"
It looks for the notification in the buffer to be the same size as what was defined in the notification. Instead of:
if (size != notification->Size())
could we do:
if (size > notification->Size())
or something else?
Thanks!
The text was updated successfully, but these errors were encountered:
I'm wanting to receive notifications from ADS logs on port 100. When I create a notification with a max length of 1024 I get this error message: "Warning: Notification sample size: 101 doesn't match: 1024"
The code that generates this error:
ADS/AdsLib/standalone/NotificationDispatcher.cpp
Line 76 in 20d4a67
It looks for the notification in the buffer to be the same size as what was defined in the notification. Instead of:
if (size != notification->Size())
could we do:
if (size > notification->Size())
or something else?
Thanks!
The text was updated successfully, but these errors were encountered: