diff options
author | Brion Vibber <brion@pobox.com> | 2010-01-28 09:52:35 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-01-28 09:52:35 -0800 |
commit | a868a523a5ab042e75d333298a75aaa369d445cc (patch) | |
tree | e5d8e9feb290025d0eb006bcbc9382669e97e538 /lib/stompqueuemanager.php | |
parent | ffaaf9de4a1da25f6168c53a33b25683ae134c61 (diff) |
Can now set $config['queue']['stomp_persistent'] = false; to explicitly disable persistence when we queue items
Diffstat (limited to 'lib/stompqueuemanager.php')
-rw-r--r-- | lib/stompqueuemanager.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/stompqueuemanager.php b/lib/stompqueuemanager.php index da70d9ae3..4e2b58602 100644 --- a/lib/stompqueuemanager.php +++ b/lib/stompqueuemanager.php @@ -174,12 +174,13 @@ class StompQueueManager extends QueueManager $this->_connect(); - // XXX: serialize and send entire notice - + $props = array('created' => common_sql_now()); + if (common_config('queue', 'stomp_persistent')) { + $props['persistent'] = 'true'; + } $result = $this->con->send($this->queueName($queue), $msg, // BODY of the message - array ('created' => common_sql_now(), - 'persistent' => 'true')); + $props); if (!$result) { common_log(LOG_ERR, "Error sending $rep to $queue queue"); |