File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -247,6 +247,8 @@ pub fn create_lib_context(settings: settings::Settings) -> Result<LibContext> {
247247 let _ = env_logger:: try_init ( ) ;
248248
249249 pyo3_async_runtimes:: tokio:: init_with_runtime ( get_runtime ( ) ) . unwrap ( ) ;
250+
251+ let _ = rustls:: crypto:: aws_lc_rs:: default_provider ( ) . install_default ( ) ;
250252 } ) ;
251253
252254 let db_pools = DbPools :: default ( ) ;
Original file line number Diff line number Diff line change @@ -297,11 +297,6 @@ impl StorageFactoryBase for Factory {
297297 Vec < TypedExportDataCollectionBuildOutput < Self > > ,
298298 Vec < ( CollectionKey , SetupState ) > ,
299299 ) > {
300- // Hotfix to resolve
301- // `no process-level CryptoProvider available -- call CryptoProvider::install_default() before this point`
302- // when using HTTPS URLs.
303- let _ = rustls:: crypto:: ring:: default_provider ( ) . install_default ( ) ;
304-
305300 let data_coll_output = data_collections
306301 . into_iter ( )
307302 . map ( |d| {
You can’t perform that action at this time.
0 commit comments