File tree Expand file tree Collapse file tree 6 files changed +8
-15
lines changed Expand file tree Collapse file tree 6 files changed +8
-15
lines changed Original file line number Diff line number Diff line change 11{
22 "url" : " http://127.0.0.1:4000" ,
33 "setUp" : [
4- " ./integrations/runtime/setUpBff" ,
5- " ./integrations/runtime/setUpGateway"
4+ " ./integrations/runtime/setUpBff"
65 ],
76 "tearDown" : [
8- " ./integrations/runtime/tearDownGateway" ,
97 " ./integrations/runtime/tearDownBff"
108 ],
119 "middleware" : [
Original file line number Diff line number Diff line change 22 "url" : " http://127.0.0.1:3000" ,
33 "setUp" : [
44 " ./integrations/runtime/setUpBff" ,
5- " ./integrations/runtime/setUpWorker" ,
6- " ./integrations/runtime/setUpGateway"
5+ " ./integrations/runtime/setUpWorker"
76 ],
87 "tearDown" : [
9- " ./integrations/runtime/tearDownGateway" ,
108 " ./integrations/runtime/tearDownWorker" ,
119 " ./integrations/runtime/tearDownBff"
1210 ],
Original file line number Diff line number Diff line change 11
2+ import identityProvider from '^/integrations/authentication' ;
23import eventBroker from '^/integrations/eventbroker' ;
34
45try
56{
67 await Promise . allSettled ( [
7- eventBroker . connect ( )
8+ eventBroker . connect ( ) ,
9+ identityProvider . connect ( )
810 ] ) ;
911}
1012catch ( error )
1113{
1214 const disconnections = [ ] ;
1315
1416 if ( eventBroker . connected ) disconnections . push ( eventBroker . disconnect ( ) ) ;
17+ if ( identityProvider . connected ) disconnections . push ( identityProvider . disconnect ( ) ) ;
1518
1619 await Promise . allSettled ( disconnections ) ;
1720
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11
2+ import identityProvider from '^/integrations/authentication' ;
23import eventBroker from '^/integrations/eventbroker' ;
34
45const disconnections = [ ] ;
56
67if ( eventBroker . connected ) disconnections . push ( eventBroker . disconnect ( ) ) ;
8+ if ( identityProvider . connected ) disconnections . push ( identityProvider . disconnect ( ) ) ;
79
810await Promise . allSettled ( disconnections ) ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments