File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
enclave-runtime/src/initialization
litentry/core/data-providers/src Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -219,11 +219,6 @@ pub(crate) fn init_enclave(
219
219
let data_provider_config = DataProviderConfig :: new ( ) ;
220
220
GLOBAL_DATA_PROVIDER_CONFIG . initialize ( data_provider_config. into ( ) ) ;
221
221
222
- std:: thread:: spawn ( move || {
223
- #[ allow( clippy:: unwrap_used) ]
224
- run_stf_task_handler ( ) . unwrap ( ) ;
225
- } ) ;
226
-
227
222
Ok ( ( ) )
228
223
}
229
224
@@ -368,6 +363,13 @@ pub(crate) fn init_enclave_sidechain_components(
368
363
}
369
364
370
365
std:: thread:: spawn ( move || {
366
+ println ! ( "running stf task handler" ) ;
367
+ #[ allow( clippy:: unwrap_used) ]
368
+ run_stf_task_handler ( ) . unwrap ( ) ;
369
+ } ) ;
370
+
371
+ std:: thread:: spawn ( move || {
372
+ println ! ( "running vc issuance" ) ;
371
373
#[ allow( clippy:: unwrap_used) ]
372
374
run_vc_issuance ( ) . unwrap ( ) ;
373
375
} ) ;
Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ impl Default for DataProviderConfig {
199
199
200
200
impl DataProviderConfig {
201
201
pub fn new ( ) -> Self {
202
- std :: println !( "Initializing data providers config" ) ;
202
+ log :: debug !( "Initializing data providers config" ) ;
203
203
204
204
// default prod config
205
205
let mut config = DataProviderConfig {
You can’t perform that action at this time.
0 commit comments