Author: jgomes
Date: Fri Mar 15 18:28:08 2013
New Revision: 1457047
URL: http://svn.apache.org/r1457047
Log:
Call the Wakeup() function on the variable that was actually checked for null.
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/src/main/csharp/Transport/InactivityMonitor.cs
Modified:
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/src/main/csharp/Transport/InactivityMonitor.cs
URL:
http://svn.apache.org/viewvc/activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/src/main/csharp/Transport/InactivityMonitor.cs?rev=1457047&r1=1457046&r2=1457047&view=diff
==============================================================================
---
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/src/main/csharp/Transport/InactivityMonitor.cs
(original)
+++
activemq/activemq-dotnet/Apache.NMS.ActiveMQ/branches/1.5.x/src/main/csharp/Transport/InactivityMonitor.cs
Fri Mar 15 18:28:08 2013
@@ -153,7 +153,7 @@ namespace Apache.NMS.ActiveMQ.Transport
if (this.monitorStarted.Value && taskRunner != null)
{
- this.asyncTasks.Wakeup();
+ taskRunner.Wakeup();
}
}
else
@@ -196,7 +196,7 @@ namespace Apache.NMS.ActiveMQ.Transport
if (this.monitorStarted.Value && taskRunner != null)
{
- this.asyncTasks.Wakeup();
+ taskRunner.Wakeup();
}
}
else