mirror of https://github.com/veops/cmdb.git
fix: Solving the timezone issue in Redis, as well as the problem of MySQL logs always being in UTC timezone. (#268)
This commit is contained in:
parent
cc599d414a
commit
837aabfe77
|
@ -38,7 +38,6 @@ def string_to_bytes(value):
|
||||||
byte_string = value
|
byte_string = value
|
||||||
else:
|
else:
|
||||||
byte_string = value.encode("utf-8")
|
byte_string = value.encode("utf-8")
|
||||||
|
|
||||||
return byte_string
|
return byte_string
|
||||||
|
|
||||||
|
|
||||||
|
@ -314,7 +313,7 @@ class KeyManage:
|
||||||
secrets_root_key = current_app.config.get("secrets_root_key")
|
secrets_root_key = current_app.config.get("secrets_root_key")
|
||||||
msg, ok = self.is_valid_root_key(secrets_root_key)
|
msg, ok = self.is_valid_root_key(secrets_root_key)
|
||||||
if not ok:
|
if not ok:
|
||||||
return {"message": msg, "status": "failed"}
|
return true
|
||||||
status = self.backend.get(backend_seal_key)
|
status = self.backend.get(backend_seal_key)
|
||||||
return status == "block"
|
return status == "block"
|
||||||
|
|
||||||
|
|
|
@ -24,6 +24,8 @@ services:
|
||||||
cmdb-cache:
|
cmdb-cache:
|
||||||
image: registry.cn-hangzhou.aliyuncs.com/veops/cmdb-cache:3.0
|
image: registry.cn-hangzhou.aliyuncs.com/veops/cmdb-cache:3.0
|
||||||
container_name: cmdb-cache
|
container_name: cmdb-cache
|
||||||
|
environment:
|
||||||
|
TZ: Asia/Shanghai
|
||||||
networks:
|
networks:
|
||||||
new:
|
new:
|
||||||
aliases:
|
aliases:
|
||||||
|
|
|
@ -52,4 +52,5 @@ sql_mode="STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY
|
||||||
#log-error = /var/log/mysql/error.log
|
#log-error = /var/log/mysql/error.log
|
||||||
# By default we only accept connections from localhost
|
# By default we only accept connections from localhost
|
||||||
#bind-address = 127.0.0.1
|
#bind-address = 127.0.0.1
|
||||||
# Disabling symbolic-links is recommended to prevent assorted security risks
|
# Disabling symbolic-links is recommended to prevent assorted security risks
|
||||||
|
log_timestamps = SYSTEM
|
Loading…
Reference in New Issue