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/e-cal-model.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/e-cal-model.c')
-rw-r--r-- | calendar/gui/e-cal-model.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 63e840ccb1..3c64e04296 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -1677,10 +1677,10 @@ update_e_cal_view_for_client (ECalModel *model, ECalModelClient *client_data) try_again: if (!e_cal_get_query (client_data->client, priv->full_sexp, &client_data->query, &error)) { - 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; } |