From: pkanavos Date: Wed, 4 Jul 2012 14:16:01 +0000 (+0300) Subject: Increased the number of retries before abandoning StartMonitor X-Git-Url: https://code.grnet.gr/git/pithos-ms-client/commitdiff_plain/a026e07af954df4bc312c164a7d606c9b5f3bdf9 Increased the number of retries before abandoning StartMonitor --- diff --git a/trunk/Pithos.Client.WPF/Shell/ShellViewModel.cs b/trunk/Pithos.Client.WPF/Shell/ShellViewModel.cs index 692f0ae..897d7d7 100644 --- a/trunk/Pithos.Client.WPF/Shell/ShellViewModel.cs +++ b/trunk/Pithos.Client.WPF/Shell/ShellViewModel.cs @@ -903,7 +903,7 @@ namespace Pithos.Client.WPF { private bool AbandonRetry(PithosMonitor monitor, int retries) { - if (retries > 1) + if (retries > 3) { var message = String.Format("Monitoring of account {0} has failed too many times. Will not retry", monitor.UserName);