aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-02-10 15:49:54 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-02-10 15:49:54 +0200
commita01a540f2f3465d6bb04db199949bb47462350bd (patch)
treefd2ac21f6f9e8600f88271309979a04c626b6e60 /Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging
parent98d52d4eaeb42d21d2b845c6790e8abf5ddc2352 (diff)
downloadTango-a01a540f2f3465d6bb04db199949bb47462350bd.tar.gz
Tango-a01a540f2f3465d6bb04db199949bb47462350bd.zip
Fixed major issue with USB adapter buffering.
Fixed issues with TransportMessage raising task result/exception in task and not thread which caused a hang sometimes.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging/DefaultEventLogger.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging/DefaultEventLogger.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging/DefaultEventLogger.cs
index 0afd2e31d..ade15af7b 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging/DefaultEventLogger.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging/DefaultEventLogger.cs
@@ -251,7 +251,7 @@ namespace Tango.PPC.Common.EventLogging
machineEvent.HostName = _hostName;
machineEvent.EventType = _eventTypesGuids[machineEvent.Type];
- if (_machineProvider.MachineOperator == null || _authentication.CurrentUser == null)
+ if (_machineProvider.Machine == null || _authentication.CurrentUser == null)
{
_pendingEvents.Add(machineEvent);
}