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/default.php | |
parent | ffaaf9de4a1da25f6168c53a33b25683ae134c61 (diff) |
Can now set $config['queue']['stomp_persistent'] = false; to explicitly disable persistence when we queue items
Diffstat (limited to 'lib/default.php')
-rw-r--r-- | lib/default.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/default.php b/lib/default.php index c729193b5..8de8b1097 100644 --- a/lib/default.php +++ b/lib/default.php @@ -84,6 +84,7 @@ $default = 'control_channel' => '/topic/statusnet-control', // broadcasts to all queue daemons 'stomp_username' => null, 'stomp_password' => null, + 'stomp_persistent' => true, // keep items across queue server restart, if persistence is enabled 'monitor' => null, // URL to monitor ping endpoint (work in progress) 'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully 'debug_memory' => false, // true to spit memory usage to log |