File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33## Unreleased
44
55- Fix clear messages to reset last api used as well.
6+ - Avoid server stuck during initialize due to threads unavailable.
67
78## 0.109.3
89
Original file line number Diff line number Diff line change 9292 messenger
9393 db*)))))))]
9494 (swap! db* assoc-in [:config-updated-fns :sync-models ] #(sync-models-and-notify! %))
95- (sync-models-and-notify! config)))
95+ (future ( sync-models-and-notify! config) )))
9696 (future
9797 (Thread/sleep 1000 ) ; ; wait chat window is open in some editors.
9898 (when-let [error (config/validation-error )]
108108 (future
109109 (cache/cleanup-tool-call-outputs! ))
110110 ; ; Trigger sessionStart hook after initialization
111- (f.hooks/trigger-if-matches! :sessionStart
112- (f.hooks/base-hook-data @db*)
113- {}
114- @db*
115- config))
111+ (future
112+ (f.hooks/trigger-if-matches! :sessionStart
113+ (f.hooks/base-hook-data @db*)
114+ {}
115+ @db*
116+ config)))
116117
117118(defn workspace-did-change-folders [{:keys [db*]} params]
118119 (let [{:keys [added removed]} (:event params)
You can’t perform that action at this time.
0 commit comments