mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
salt.returners.memcache_return: add no-op save_minions() func for API compatibility
This commit is contained in:
parent
4322ad9ef3
commit
c13bb6549c
2 changed files with 9 additions and 1 deletions
|
@ -3,4 +3,5 @@ salt.returners.memcache_return
|
|||
==============================
|
||||
|
||||
.. automodule:: salt.returners.memcache_return
|
||||
:members:
|
||||
:members:
|
||||
:exclude-members: save_minions
|
||||
|
|
|
@ -139,6 +139,13 @@ def save_load(jid, load):
|
|||
serv.append('jids', jid)
|
||||
|
||||
|
||||
def save_minions(jid, minions): # pylint: disable=unused-argument
|
||||
'''
|
||||
Included for API consistency
|
||||
'''
|
||||
pass
|
||||
|
||||
|
||||
def get_load(jid):
|
||||
'''
|
||||
Return the load data that marks a specified jid
|
||||
|
|
Loading…
Add table
Reference in a new issue