- Removed broken LaunchSwarmDialog (formula-based) from TopBar/LeftPanel - All Rocket buttons (TopBar, LeftPanel, DAG nodes, social cards) now open AssignmentPanel (archetype-based) which actually works - Every Rocket clears taskId first so assignMode && !taskId condition passes - Conversation button priority: taskId always shows conversation, not assign panel - Added TelemetryStrip: minimized right sidebar with status dots when non-telemetry panel (conversation/assignment) is active - Live feed has minimize button → restores last taskId or assignMode - DAG nodes: Signal icon → restores telemetry feed - Social button on DAG nodes: single router.push to avoid race (setView + setTaskId) - Fixed social card message button: opens right panel with drawer:closed (no popup) Co-Authored-By: Oz <oz-agent@warp.dev>
96 lines
No EOL
2.1 KiB
YAML
96 lines
No EOL
2.1 KiB
YAML
# Dolt SQL server configuration
|
|
#
|
|
# Uncomment and edit lines as necessary to modify your configuration.
|
|
# Full documentation: https://docs.dolthub.com/sql-reference/server/configuration
|
|
#
|
|
|
|
# log_level: info
|
|
|
|
# log_format: text
|
|
|
|
# max_logged_query_len: 0
|
|
|
|
# encode_logged_query: false
|
|
|
|
# behavior:
|
|
# read_only: false
|
|
# autocommit: true
|
|
# disable_client_multi_statements: false
|
|
# dolt_transaction_commit: false
|
|
# event_scheduler: "OFF"
|
|
# auto_gc_behavior:
|
|
# enable: true
|
|
# archive_level: 1
|
|
|
|
listener:
|
|
host: 127.0.0.1
|
|
port: 3307
|
|
# max_connections: 1000
|
|
# back_log: 50
|
|
# max_connections_timeout_millis: 60000
|
|
# read_timeout_millis: 28800000
|
|
# write_timeout_millis: 28800000
|
|
# tls_key: key.pem
|
|
# tls_cert: cert.pem
|
|
# require_secure_transport: false
|
|
# allow_cleartext_passwords: false
|
|
# socket: /tmp/mysql.sock
|
|
|
|
# data_dir: .
|
|
|
|
# cfg_dir: .doltcfg
|
|
|
|
# remotesapi:
|
|
# port: 8000
|
|
# read_only: false
|
|
|
|
# mcp_server:
|
|
# port: 7007
|
|
# user: root
|
|
# password: ""
|
|
# database: ""
|
|
|
|
# privilege_file: .doltcfg/privileges.db
|
|
|
|
# branch_control_file: .doltcfg/branch_control.db
|
|
|
|
# user_session_vars:
|
|
# - name: root
|
|
# vars:
|
|
# dolt_log_level: warn
|
|
# dolt_show_system_tables: 1
|
|
|
|
# system_variables:
|
|
# dolt_log_level: info
|
|
# dolt_transaction_commit: 1
|
|
|
|
# jwks: []
|
|
|
|
# metrics:
|
|
# labels: {}
|
|
# host: localhost
|
|
# port: 9091
|
|
# tls_cert: ""
|
|
# tls_key: ""
|
|
# tls_ca: ""
|
|
|
|
# cluster:
|
|
# standby_remotes:
|
|
# - name: standby_replica_one
|
|
# remote_url_template: https://standby_replica_one.svc.cluster.local:50051/{database}
|
|
# - name: standby_replica_two
|
|
# remote_url_template: https://standby_replica_two.svc.cluster.local:50051/{database}
|
|
# bootstrap_role: primary
|
|
# bootstrap_epoch: 1
|
|
# remotesapi:
|
|
# address: 127.0.0.1
|
|
# port: 50051
|
|
# tls_key: remotesapi_key.pem
|
|
# tls_cert: remotesapi_chain.pem
|
|
# tls_ca: standby_cas.pem
|
|
# server_name_urls:
|
|
# - https://standby_replica_one.svc.cluster.local
|
|
# - https://standby_replica_two.svc.cluster.local
|
|
# server_name_dns:
|
|
# - standby_replica_one.svc.cluster.local
|
|
# - standby_replica_two.svc.cluster.local |