1.get_connection() 方法的 command_name 参数已经被弃用,更新使用调用get_connection() 方法
2.更新清华导入库测试账号密码
7 files added
5 files modified
2 files deleted
5515 ■■■■ changed files
测试组/脚本/.idea/.gitignore 8 ●●●●● patch | view | raw | blame | history
测试组/脚本/.idea/inspectionProfiles/Project_Default.xml 6 ●●●●● patch | view | raw | blame | history
测试组/脚本/.idea/inspectionProfiles/profiles_settings.xml 6 ●●●●● patch | view | raw | blame | history
测试组/脚本/.idea/modules.xml 8 ●●●●● patch | view | raw | blame | history
测试组/脚本/.idea/vcs.xml 7 ●●●●● patch | view | raw | blame | history
测试组/脚本/.idea/脚本.iml 8 ●●●●● patch | view | raw | blame | history
测试组/脚本/Change_password/修改数据库的哈希密码和原始密码做桌面客户端.py 2 ●●● patch | view | raw | blame | history
测试组/脚本/Change_password/修改数据库的哈希密码和原始密码做桌面客户端源代码.py 2 ●●● patch | view | raw | blame | history
测试组/脚本/Change_password/修改数据库的哈希密码和原始密码做桌面客户端源代码(argon2id).py 2 ●●● patch | view | raw | blame | history
测试组/脚本/Change_password/异步批量修改数据库的哈希密码和原始密码V2.0.py 2 ●●● patch | view | raw | blame | history
测试组/脚本/Change_password/更新日志.csv 5464 ●●●● patch | view | raw | blame | history
测试组/脚本/Change_password/用户信息导出/~$清华大学生产数据导入测试环境账号密码_20251118.xlsx patch | view | raw | blame | history
测试组/脚本/Change_password/用户信息导出/清华大学生产数据导入测试环境账号密码_20251118.xlsx patch | view | raw | blame | history
测试组/脚本/Change_password/用户信息导出/清华大学生产数据导入测试环境账号密码_20251120.xlsx patch | view | raw | blame | history
测试组/脚本/.idea/.gitignore
New file
@@ -0,0 +1,8 @@
# 默认忽略的文件
/shelf/
/workspace.xml
# 基于编辑器的 HTTP 客户端请求
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
测试组/脚本/.idea/inspectionProfiles/Project_Default.xml
New file
@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
  <profile version="1.0">
    <option name="myName" value="Project Default" />
    <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
  </profile>
</component>
测试组/脚本/.idea/inspectionProfiles/profiles_settings.xml
New file
@@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
  <settings>
    <option name="USE_PROJECT_PROFILE" value="false" />
    <version value="1.0" />
  </settings>
</component>
测试组/脚本/.idea/modules.xml
New file
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="ProjectModuleManager">
    <modules>
      <module fileurl="file://$PROJECT_DIR$/.idea/脚本.iml" filepath="$PROJECT_DIR$/.idea/脚本.iml" />
    </modules>
  </component>
</project>
测试组/脚本/.idea/vcs.xml
New file
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
  <component name="VcsDirectoryMappings">
    <mapping directory="$PROJECT_DIR$/../.." vcs="Git" />
    <mapping directory="$PROJECT_DIR$/造数脚本" vcs="Git" />
  </component>
</project>
测试组/脚本/.idea/脚本.iml
New file
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
  <component name="NewModuleRootManager">
    <content url="file://$MODULE_DIR$" />
    <orderEntry type="inheritedJdk" />
    <orderEntry type="sourceFolder" forTests="false" />
  </component>
</module>
测试组/脚本/Change_password/修改数据库的哈希密码和原始密码做桌面客户端.py
@@ -87,7 +87,7 @@
            for db_index in range(db_count):
                try:
                    # 切换到指定数据库
                    temp_client = self.redis_client.connection_pool.get_connection('ping')
                    temp_client = self.redis_client.connection_pool.get_connection()
                    temp_client.send_command('SELECT', db_index)
                    temp_client.read_response()
测试组/脚本/Change_password/修改数据库的哈希密码和原始密码做桌面客户端源代码.py
@@ -87,7 +87,7 @@
            for db_index in range(db_count):
                try:
                    # 切换到指定数据库
                    temp_client = self.redis_client.connection_pool.get_connection('ping')
                    temp_client = self.redis_client.connection_pool.get_connection()
                    temp_client.send_command('SELECT', db_index)
                    temp_client.read_response()
测试组/脚本/Change_password/修改数据库的哈希密码和原始密码做桌面客户端源代码(argon2id).py
@@ -112,7 +112,7 @@
            for db_index in range(db_count):
                try:
                    # 切换到指定数据库
                    temp_client = self.redis_client.connection_pool.get_connection('ping')
                    temp_client = self.redis_client.connection_pool.get_connection()
                    temp_client.send_command('SELECT', db_index)
                    temp_client.read_response()
测试组/脚本/Change_password/异步批量修改数据库的哈希密码和原始密码V2.0.py
@@ -76,7 +76,7 @@
            for db_index in range(db_count):
                try:
                    # 切换到指定数据库
                    temp_client = self.redis_client.connection_pool.get_connection('ping')
                    temp_client = self.redis_client.connection_pool.get_connection()
                    await asyncio.to_thread(temp_client.send_command, 'SELECT', db_index)
                    await asyncio.to_thread(temp_client.read_response)
测试组/脚本/Change_password/更新日志.csv
Diff too large
测试组/脚本/Change_password/用户信息导出/~$清华大学生产数据导入测试环境账号密码_20251118.xlsx
测试组/脚本/Change_password/用户信息导出/清华大学生产数据导入测试环境账号密码_20251118.xlsx
Binary files differ
测试组/脚本/Change_password/用户信息导出/清华大学生产数据导入测试环境账号密码_20251120.xlsx
Binary files differ