Software /
code /
prosody
Changeset
11188:8a29e7206917
mod_pubsub: Comment on itemstore type
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 25 Oct 2020 15:23:36 +0100 |
parents | 11187:76e135fbca0f |
children | 11190:88ce53df44a9 |
files | plugins/mod_pubsub/mod_pubsub.lua |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
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);