Software /
code /
prosody
Diff
plugins/mod_pubsub/mod_pubsub.lua @ 11188:8a29e7206917
mod_pubsub: Comment on itemstore type
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 25 Oct 2020 15:23:36 +0100 |
parent | 10673:1a23a58ac84e |
child | 11200:bf8f2da84007 |
line wrap: on
line diff
--- a/plugins/mod_pubsub/mod_pubsub.lua Sun Oct 25 15:21:34 2020 +0100 +++ b/plugins/mod_pubsub/mod_pubsub.lua Sun Oct 25 15:23:36 2020 +0100 @@ -42,7 +42,7 @@ local node_store = module:open_store(module.name.."_nodes"); -local function create_simple_itemstore(node_config, node_name) +local function create_simple_itemstore(node_config, node_name) --> util.cache like object local driver = storagemanager.get_driver(module.host, "pubsub_data"); local archive = driver:open("pubsub_"..node_name, "archive"); return lib_pubsub.archive_itemstore(archive, node_config, nil, node_name);