File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,10 @@ impl Provisioner for AWSProvisioner {
270270 } else {
271271 warn ! ( "No status found for exit node, creating new instance" ) ;
272272 // TODO: this should be handled by the controller logic
273- return self . create_exit_node ( auth, exit_node) . await . map ( |( status, _) | status) ;
273+ return self
274+ . create_exit_node ( auth, exit_node)
275+ . await
276+ . map ( |( status, _) | status) ;
274277 }
275278 }
276279
Original file line number Diff line number Diff line change @@ -179,7 +179,10 @@ impl Provisioner for LinodeProvisioner {
179179 Ok ( status)
180180 } else {
181181 warn ! ( "No instance status found, creating new instance" ) ;
182- return self . create_exit_node ( auth. clone ( ) , exit_node) . await . map ( |( status, _) | status) ;
182+ return self
183+ . create_exit_node ( auth. clone ( ) , exit_node)
184+ . await
185+ . map ( |( status, _) | status) ;
183186 }
184187 }
185188}
You can’t perform that action at this time.
0 commit comments