Skip to content

Commit

Permalink
提升版本为v1.7.9
Browse files Browse the repository at this point in the history
  • Loading branch information
hhyo committed Apr 11, 2020
1 parent e699357 commit 6ca5930
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion archery/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = (1, 7, 8)
version = (1, 7, 9)
display_version = '.'.join(str(i) for i in version)
2 changes: 1 addition & 1 deletion sql/engines/redis.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_all_databases(self, **kwargs):
result = ResultSet(full_sql='CONFIG GET databases')
conn = self.get_connection()
try:
rows = conn.config_get('databses')['databases']
rows = conn.config_get('databases')['databases']
except Exception as e:
logger.warning(f"Redis CONFIG GET databases 执行报错,异常信息:{e}")
rows = 16
Expand Down
2 changes: 1 addition & 1 deletion src/docker-compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ services:
- "./inception/config.toml:/etc/config.toml"

archery:
image: hhyo/archery:1.7.8
image: hhyo/archery:1.7.9
container_name: archery
restart: always
ports:
Expand Down

0 comments on commit 6ca5930

Please sign in to comment.