summaryrefslogtreecommitdiff
path: root/program/steps/mail/compose.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-11-09 13:40:23 +0000
committerthomascube <thomas@roundcube.net>2011-11-09 13:40:23 +0000
commit81f5dd7774119e6f35f4594a68b25e53a22e65f2 (patch)
tree0ad06a5e053c75644d60379e1f78a1b830520040 /program/steps/mail/compose.inc
parent62c86187444721317c7f3bcb2edb469f00ca0971 (diff)
Consider replication delays in session storage
Diffstat (limited to 'program/steps/mail/compose.inc')
-rw-r--r--program/steps/mail/compose.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc
index 6961bf86a..c527ce15f 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -31,6 +31,14 @@ $MESSAGE = NULL;
$COMPOSE_ID = get_input_value('_id', RCUBE_INPUT_GET);
$_SESSION['compose'] = $_SESSION['compose_data_'.$COMPOSE_ID];
+// give replicated session storage some time to synchronize
+$retries = 0;
+while ($COMPOSE_ID && !is_array($_SESSION['compose']) && $RCMAIL->db->is_replicated() && $retries++ < 5) {
+ usleep(500000);
+ $RCMAIL->session->reload();
+ $_SESSION['compose'] = $_SESSION['compose_data_'.$COMPOSE_ID];
+}
+
// Nothing below is called during message composition, only at "new/forward/reply/draft" initialization or
// if a compose-ID is given (i.e. when the compose step is opened in a new window/tab).
if (!is_array($_SESSION['compose']))