MCPcopy Create free account
hub / github.com/GongShichen/LuminaCode / RefreshRuntimeConfig

Method RefreshRuntimeConfig

agent/query_engine.go:47–57  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

45 q.CoreEngine.Reset()
46}
47
48func (q *QueryEngine) RefreshRuntimeConfig() {
49 if q == nil {
50 return
51 }
52 refreshed := config.ReloadDynamicConfig(q.Config)
53 q.Config = refreshed
54 if q.CoreEngine != nil {
55 q.CoreEngine.RefreshRuntimeConfig(refreshed)
56 }
57 config.SetConfig(refreshed)
58}
59
60func (q *QueryEngine) Shutdown() {

Calls 2

ReloadDynamicConfigFunction · 0.92
SetConfigFunction · 0.92