aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/DefaultRemoteJobService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/DefaultRemoteJobService.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/DefaultRemoteJobService.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/DefaultRemoteJobService.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/DefaultRemoteJobService.cs
index b42a3206c..3c892aad4 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/DefaultRemoteJobService.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/RemoteJob/DefaultRemoteJobService.cs
@@ -62,7 +62,7 @@ namespace Tango.PPC.Common.RemoteJob
RemoteJobInputOutput inputOutput = new RemoteJobInputOutput();
- if (_clients.Count > 0 && _buildProvider.IsEureka)
+ if (_clients.Count > 0 && _buildProvider.MachineType.IsXMachine())
{
inputOutput = GetCurrentJobInputOutput();
}
@@ -96,7 +96,7 @@ namespace Tango.PPC.Common.RemoteJob
var currentProgress = GetJobProgress(_handler);
RemoteJobInputOutput inputOutput = new RemoteJobInputOutput();
- if (_clients.Count > 0 && _buildProvider.IsEureka)
+ if (_clients.Count > 0 && _buildProvider.MachineType.IsXMachine())
{
inputOutput = GetCurrentJobInputOutput();
}
@@ -162,7 +162,7 @@ namespace Tango.PPC.Common.RemoteJob
{
var inputOutput = new RemoteJobInputOutput();
- if (_inputOutputProvider == null && _buildProvider.IsEureka)
+ if (_inputOutputProvider == null && _buildProvider.MachineType.IsXMachine())
{
_inputOutputProvider = TangoIOC.Default.GetInstance<IRemoteJobInputOutputProvider>();
}