feat: update rommie model, reassign service ports, and fix deploy health check
- Upgrade rommie model from Qwen3-VL-30B-A3B to Qwen3.5-35B-A3B-UD-Q4_K_XL and update model URL port to 22079 - Reassign freecad_mcp_port (22032 -> 22063) and kernos_port (20201 -> 22062) for consistent port numbering - Flush handlers before health check to ensure systemd reload completes before verifying the endpoint - Update expected MCP health check status code from 405 to 406
This commit is contained in:
@@ -69,16 +69,19 @@
|
||||
state: started
|
||||
daemon_reload: yes
|
||||
|
||||
- name: Flush handlers before health check
|
||||
meta: flush_handlers
|
||||
|
||||
- name: Verify Rommie MCP endpoint is reachable
|
||||
ansible.builtin.uri:
|
||||
url: "http://localhost:{{rommie_port}}/mcp"
|
||||
method: GET
|
||||
status_code: [200, 405]
|
||||
status_code: [200, 406]
|
||||
timeout: 15
|
||||
register: rommie_health
|
||||
retries: 5
|
||||
delay: 3
|
||||
until: rommie_health.status in [200, 405]
|
||||
until: rommie_health.status in [200, 406]
|
||||
|
||||
handlers:
|
||||
- name: Reload systemd
|
||||
|
||||
Reference in New Issue
Block a user