mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
salt.returners.pgjsonb: add no-op save_minions() func for API compatibility
This commit is contained in:
parent
d8f90f6578
commit
82750ab699
2 changed files with 8 additions and 0 deletions
|
@ -4,3 +4,4 @@ salt.returners.pgjsonb
|
|||
|
||||
.. automodule:: salt.returners.pgjsonb
|
||||
:members:
|
||||
:exclude-members: save_minions
|
||||
|
|
|
@ -282,6 +282,13 @@ def save_load(jid, load):
|
|||
pass
|
||||
|
||||
|
||||
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