@@ -117,7 +117,7 @@ fn insert_test_data(store: Arc<DieselStore>) {
117117 let ops = SubgraphDeploymentEntity :: new ( & manifest, false , false , * TEST_BLOCK_0_PTR , 1 )
118118 . create_operations ( & * TEST_SUBGRAPH_ID ) ;
119119 store
120- . create_subgraph_deployment ( & TEST_SUBGRAPH_ID , ops)
120+ . create_subgraph_deployment ( & * LOGGER , & TEST_SUBGRAPH_ID , ops)
121121 . unwrap ( ) ;
122122
123123 let test_entity_1 = create_test_entity (
@@ -1868,7 +1868,9 @@ fn entity_changes_are_fired_and_forwarded_to_subscriptions() {
18681868 // Create SubgraphDeploymentEntity
18691869 let ops = SubgraphDeploymentEntity :: new ( & manifest, false , false , * TEST_BLOCK_0_PTR , 1 )
18701870 . create_operations ( & subgraph_id) ;
1871- store. create_subgraph_deployment ( & subgraph_id, ops) . unwrap ( ) ;
1871+ store
1872+ . create_subgraph_deployment ( & * LOGGER , & subgraph_id, ops)
1873+ . unwrap ( ) ;
18721874
18731875 // Create store subscriptions
18741876 let meta_subscription =
@@ -2186,7 +2188,7 @@ fn create_subgraph_deployment_tolerates_locks() {
21862188 barrier. wait ( ) ;
21872189 let start = std:: time:: Instant :: now ( ) ;
21882190 store
2189- . create_subgraph_deployment ( & subgraph_id, vec ! [ ] )
2191+ . create_subgraph_deployment ( & * LOGGER , & subgraph_id, vec ! [ ] )
21902192 . expect ( "Subgraph creation failed" ) ;
21912193 assert ! ( start. elapsed( ) >= Duration :: from_secs( BLOCK_TIME ) ) ;
21922194 Ok ( ( ) )
0 commit comments