__netbox: replace redis DEFAULT_TIMEOUT with RQ_DEFAULT_TIMEOUT
The first one was deprecated by the second one.
This commit is contained in:
parent
144cae3b79
commit
9def5700c8
1 changed files with 1 additions and 2 deletions
|
@ -36,7 +36,6 @@ REDIS = {
|
||||||
# 'SENTINEL_SERVICE': 'netbox',
|
# 'SENTINEL_SERVICE': 'netbox',
|
||||||
'PASSWORD': '$REDIS_PASSWORD',
|
'PASSWORD': '$REDIS_PASSWORD',
|
||||||
'DATABASE': $((REDIS_DBID_OFFSET + 0)),
|
'DATABASE': $((REDIS_DBID_OFFSET + 0)),
|
||||||
'DEFAULT_TIMEOUT': 300,
|
|
||||||
'SSL': $REDIS_SSL,
|
'SSL': $REDIS_SSL,
|
||||||
},
|
},
|
||||||
'caching': {
|
'caching': {
|
||||||
|
@ -47,10 +46,10 @@ REDIS = {
|
||||||
# 'SENTINEL_SERVICE': 'netbox',
|
# 'SENTINEL_SERVICE': 'netbox',
|
||||||
'PASSWORD': '$REDIS_PASSWORD',
|
'PASSWORD': '$REDIS_PASSWORD',
|
||||||
'DATABASE': $((REDIS_DBID_OFFSET + 1)),
|
'DATABASE': $((REDIS_DBID_OFFSET + 1)),
|
||||||
'DEFAULT_TIMEOUT': 300,
|
|
||||||
'SSL': $REDIS_SSL,
|
'SSL': $REDIS_SSL,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
RQ_DEFAULT_TIMEOUT = 300
|
||||||
|
|
||||||
# This key is used for secure generation of random numbers and strings. It must never be exposed outside of this file.
|
# This key is used for secure generation of random numbers and strings. It must never be exposed outside of this file.
|
||||||
# For optimal security, SECRET_KEY should be at least 50 characters in length and contain a mix of letters, numbers, and
|
# For optimal security, SECRET_KEY should be at least 50 characters in length and contain a mix of letters, numbers, and
|
||||||
|
|
Loading…
Reference in a new issue