( name: string | undefined, )
| 129 | } |
| 130 | |
| 131 | export async function updateSessionName( |
| 132 | name: string | undefined, |
| 133 | ): Promise<void> { |
| 134 | if (!name) return |
| 135 | await updatePidFile({ name }) |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Record this session's Remote Control session ID so peer enumeration can |
no test coverage detected