Software /
code /
prosody
Changeset
8957:21ae6cb20dcf
mod_pubsub: Remove feature flag for data persistence since node config is now persistent
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 01 Jul 2018 04:46:39 +0200 |
parents | 8956:82f92af4b0f3 |
children | 8958:b10a37f6f75f |
files | plugins/mod_pubsub/mod_pubsub.lua |
diffstat | 1 files changed, 0 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_pubsub/mod_pubsub.lua Sun Jul 01 04:44:24 2018 +0200 +++ b/plugins/mod_pubsub/mod_pubsub.lua Sun Jul 01 04:46:39 2018 +0200 @@ -13,8 +13,6 @@ local pubsub_disco_name = module:get_option_string("name", "Prosody PubSub Service"); local expose_publisher = module:get_option_boolean("expose_publisher", false) -local enable_persistence = module:get_option_boolean("experimental_pubsub_item_persistence", false); - local service; local lib_pubsub = module:require "pubsub"; @@ -34,13 +32,6 @@ return lib_pubsub.archive_itemstore(archive, node_config, nil, node_name); end -if enable_persistence then - module:log("warn", "Item persistence is an experimental feature. Note that ownership information is lost on restart.") -else - create_simple_itemstore = nil; -end - - function simple_broadcast(kind, node, jids, item, actor, node_obj) if item then item = st.clone(item);