mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge pull request #46989 from Ch3LL/redis_log
Fix redis cache log debug line
This commit is contained in:
commit
9924100c44
1 changed files with 1 additions and 4 deletions
5
salt/cache/redis_cache.py
vendored
5
salt/cache/redis_cache.py
vendored
|
@ -341,10 +341,7 @@ def store(bank, key, data):
|
|||
_build_bank_hier(bank, redis_pipe)
|
||||
value = __context__['serial'].dumps(data)
|
||||
redis_pipe.set(redis_key, value)
|
||||
log.debug(
|
||||
'Setting the value for %s under %s (%s)',
|
||||
key=key, bank=bank, redis_key=redis_key
|
||||
)
|
||||
log.debug('Setting the value for %s under %s (%s)', key, bank, redis_key)
|
||||
redis_pipe.sadd(redis_bank_keys, key)
|
||||
log.debug('Adding %s to %s', key, redis_bank_keys)
|
||||
redis_pipe.execute()
|
||||
|
|
Loading…
Add table
Reference in a new issue