diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2009-01-30 17:28:55 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2009-01-30 17:28:55 +0800 |
commit | bf4820e7210c70abc7fd4249dc838115bdec6727 (patch) | |
tree | 20648ce34823ac7cbd527dbe3b32945b515df1cb /calendar/gui/gnome-cal.c | |
parent | 01d647401b5cb79177da45f6a7a5e5d73264ac10 (diff) | |
download | gsoc2013-evolution-bf4820e7210c70abc7fd4249dc838115bdec6727.tar.gz gsoc2013-evolution-bf4820e7210c70abc7fd4249dc838115bdec6727.tar.zst gsoc2013-evolution-bf4820e7210c70abc7fd4249dc838115bdec6727.zip |
Fixes #347287.
svn path=/trunk/; revision=37187
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 3b08f16390..560c55dd2a 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -903,10 +903,10 @@ try_again: old_query = NULL; if (!e_cal_get_query ((ECal *) l->data, real_sexp, &old_query, &error)) { /* If calendar is busy try again for 3 times. */ - if (error->code == E_CALENDAR_STATUS_BUSY && tries != 3) { + if (error->code == E_CALENDAR_STATUS_BUSY && tries != 10) { tries++; /*TODO chose an optimal value */ - g_usleep (50); + g_usleep (500); g_clear_error (&error); goto try_again; |