(service_endpoint_uri='https://vortex.data.microsoft.com/collect/v1',
separate_process=True)
| 120 | |
| 121 | @decorators.suppress_all_exceptions(raise_in_diagnostics=True) |
| 122 | def conclude(service_endpoint_uri='https://vortex.data.microsoft.com/collect/v1', |
| 123 | separate_process=True): |
| 124 | _session.end_time = datetime.now() |
| 125 | |
| 126 | payload = _session.generate_payload() |
| 127 | output_payload_to_file(payload) |
| 128 | return upload_payload(payload, service_endpoint_uri, separate_process) |
| 129 | |
| 130 | |
| 131 | @_user_agrees_to_telemetry |
nothing calls this directly
no test coverage detected