-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.sql查询 新增redis帮助文档;完全禁止keys命令 #157
Conversation
2.其他一些小东西修改
Codecov Report
@@ Coverage Diff @@
## master #157 +/- ##
==========================================
- Coverage 73.91% 73.91% -0.01%
==========================================
Files 62 62
Lines 6687 6686 -1
==========================================
- Hits 4943 4942 -1
Misses 1744 1744
Continue to review full report at Codecov.
|
@@ -175,9 +175,6 @@ | |||
# LDAP | |||
ENABLE_LDAP = False | |||
if ENABLE_LDAP: | |||
import ldap |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里去除验证过么有影响的吧
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import ldap 这个没用的。我们一直在用ldap的。
@@ -440,11 +440,11 @@ class ParamHistory(models.Model): | |||
set_sql = models.CharField('在线变更配置执行的SQL语句', max_length=1024) | |||
user_name = models.CharField('修改人', max_length=30) | |||
user_display = models.CharField('修改人中文名', max_length=50) | |||
update_time = models.DateTimeField('修改时间', auto_now_add=True) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
model定义的变更都需要提供变更语句,目前版本v1.5.3,新SQL文件定义为v1.5.3_v1.5.4.sql,放在init_sql目录下
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
按照上面的反馈简单调整一下~
请问为什么要禁止keys,我看redis帮助文档里有: |
是否能支持下zset相关命令呢 |
2.其他一些小东西修改