mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
salt.returners.postgres_local_cache: add no-op save_minions() func for API compatibility
This commit is contained in:
parent
d6d794b484
commit
0ea1b76c22
2 changed files with 8 additions and 0 deletions
|
@ -4,3 +4,4 @@ salt.returners.postgres_local_cache
|
|||
|
||||
.. automodule:: salt.returners.postgres_local_cache
|
||||
:members:
|
||||
:exclude-members: save_minions
|
||||
|
|
|
@ -256,6 +256,13 @@ def save_load(jid, clear_load):
|
|||
_close_conn(conn)
|
||||
|
||||
|
||||
def save_minions(jid, minions): # pylint: disable=unused-argument
|
||||
'''
|
||||
Included for API consistency
|
||||
'''
|
||||
pass
|
||||
|
||||
|
||||
def _escape_jid(jid):
|
||||
'''
|
||||
Do proper formatting of the jid
|
||||
|
|
Loading…
Add table
Reference in a new issue