(
sessionPath: string,
options: { useMutationLock?: boolean | undefined } = {},
)
| 91 | } |
| 92 | |
| 93 | export async function reloadRuntimeSettingsIfSafe( |
| 94 | sessionPath: string, |
| 95 | options: { useMutationLock?: boolean | undefined } = {}, |
| 96 | ): Promise<boolean> { |
| 97 | return settingsRefreshController.reloadIfSafe(sessionPath, options) |
| 98 | } |
| 99 | |
| 100 | export async function markRuntimeSettingsStale(sessionPath: string | null | undefined) { |
| 101 | const runtimeKey = getPersistedSessionPath(sessionPath ?? null) |
no outgoing calls
no test coverage detected