From a01a540f2f3465d6bb04db199949bb47462350bd Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Mon, 10 Feb 2020 15:49:54 +0200 Subject: 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. --- .../PPC/Tango.PPC.Common/EventLogging/DefaultEventLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/EventLogging') 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); } -- cgit v1.3.1