(&self, session: &SessionInfo)
| 2909 | } |
| 2910 | |
| 2911 | fn cache_session_from_api(&self, session: &SessionInfo) { |
| 2912 | let mut session_ctx = self.context.session.write(); |
| 2913 | session_ctx.upsert_session(map_api_session(session)); |
| 2914 | } |
| 2915 | |
| 2916 | fn create_optimistic_session(&mut self) -> String { |
| 2917 | let now = Utc::now(); |
no test coverage detected