(&self)
| 247 | } |
| 248 | |
| 249 | fn is_setup_in_progress(&self) -> bool { |
| 250 | let in_progress = self |
| 251 | .current_session_token |
| 252 | .lock() |
| 253 | .expect("Failed to acquire lock on current session token during gateway setup") |
| 254 | .is_some(); |
| 255 | debug!("Setup in progress check: {in_progress}"); |
| 256 | in_progress |
| 257 | } |
| 258 | |
| 259 | fn clear_setup_session(&self) { |
| 260 | debug!("Terminating setup session"); |