[PR #11932/00cff7fe backport][stable-12] lmdb_kv lookup: fix docs (#11936)

lmdb_kv lookup: fix docs (#11932)

(cherry picked from commit 00cff7feb4)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot]
2026-04-29 21:43:19 +02:00
committed by GitHub
parent 2cbcd29f3e
commit 27a0908cb9

View File

@@ -13,7 +13,7 @@ short_description: Fetch data from LMDB
description: description:
- This lookup returns a list of results from an LMDB DB corresponding to a list of items given to it. - This lookup returns a list of results from an LMDB DB corresponding to a list of items given to it.
requirements: requirements:
- lmdb (Python library U(https://lmdb.readthedocs.io/en/release/)) - lmdb (Python library U(https://lmdb.readthedocs.io/en/latest/))
options: options:
_terms: _terms:
description: List of keys to query. description: List of keys to query.
@@ -44,8 +44,8 @@ EXAMPLES = r"""
ansible.builtin.assert: ansible.builtin.assert:
that: that:
- item == 'Belgium' - item == 'Belgium'
vars: vars:
- lmdb_kv_db: jp.mdb - lmdb_kv_db: jp.mdb
with_community.general.lmdb_kv: with_community.general.lmdb_kv:
- be - be
""" """