mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
salt.returners.couchdb_return: add no-op save_minions() func for API compatibility
This commit is contained in:
parent
44538dfced
commit
8e80535516
2 changed files with 9 additions and 1 deletions
|
@ -3,4 +3,5 @@ salt.returners.couchdb_return
|
|||
=============================
|
||||
|
||||
.. automodule:: salt.returners.couchdb_return
|
||||
:members:
|
||||
:members:
|
||||
:exclude-members: save_minions
|
||||
|
|
|
@ -367,3 +367,10 @@ def prep_jid(nocache=False, passed_jid=None): # pylint: disable=unused-argument
|
|||
Do any work necessary to prepare a JID, including sending a custom id
|
||||
'''
|
||||
return passed_jid if passed_jid is not None else salt.utils.jid.gen_jid()
|
||||
|
||||
|
||||
def save_minions(jid, minions): # pylint: disable=unused-argument
|
||||
'''
|
||||
Included for API consistency
|
||||
'''
|
||||
pass
|
||||
|
|
Loading…
Add table
Reference in a new issue