aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-02-10 18:48:47 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-02-10 18:48:47 +0200
commitebc08ccd9085ff5e7687ac2af206c492b8084ae8 (patch)
treef7ff633bfe206c28cd797f7af81994fc1c72e261 /Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs
parenta01a540f2f3465d6bb04db199949bb47462350bd (diff)
downloadTango-ebc08ccd9085ff5e7687ac2af206c492b8084ae8.tar.gz
Tango-ebc08ccd9085ff5e7687ac2af206c492b8084ae8.zip
Fixed external bridge not disconnecting on failed.
Reduced number of synchronization items per cycle.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs
index 675f55aa5..53e41062f 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Synchronization/DefaultMachineDataSynchronizer.cs
@@ -79,9 +79,9 @@ namespace Tango.PPC.Common.Synchronization
StatusHistory = new SynchronizedObservableCollection<SynchronizationStatus>();
MaxJobs = 10;
- MaxJobRuns = 100;
- MaxMachinesEvents = 100;
- MaxOfflineUpdates = 50;
+ MaxJobRuns = 10;
+ MaxMachinesEvents = 10;
+ MaxOfflineUpdates = 10;
var settings = SettingsManager.Default.GetOrCreate<PPCSettings>();
Interval = settings.SynchronizationInterval;