Browse Source

Fix api_server getModuleConfiguration

StrayWarrior 2 months ago
parent
commit
33f910bd12
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pqai_agent_server/api_server.py

+ 1 - 1
pqai_agent_server/api_server.py

@@ -556,7 +556,7 @@ def get_module_configuration():
             'default_agent_type': module.default_agent_type,
             'default_agent_id': module.default_agent_id,
             'create_time': module.create_time.strftime('%Y-%m-%d %H:%M:%S'),
-            'updated_time': module.updated_time.strftime('%Y-%m-%d %H:%M:%S')
+            'update_time': module.update_time.strftime('%Y-%m-%d %H:%M:%S')
         }
         return wrap_response(200, data=data)