File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -573,7 +573,7 @@ impl TestFrontend {
573
573
axum_app
574
574
. fallback (
575
575
build_strangler_service ( iron_server. socket )
576
- . expect ( "cloud not build strangler service" ) ,
576
+ . expect ( "could not build strangler service" ) ,
577
577
)
578
578
. into_make_service ( ) ,
579
579
)
@@ -606,7 +606,7 @@ impl TestFrontend {
606
606
trace ! ( "joining axum server thread" ) ;
607
607
self . axum_server_thread
608
608
. join ( )
609
- . expect ( "could not join axum background thread error " ) ;
609
+ . expect ( "could not join axum background thread" ) ;
610
610
611
611
trace ! ( "forgetting about iron" ) ;
612
612
// Iron is bugged, and it never closes the server even when the listener is dropped. To
Original file line number Diff line number Diff line change @@ -124,7 +124,7 @@ pub fn start_daemon<C: Context + Send + Clone + 'static>(
124
124
125
125
start_background_repository_stats_updater ( & context) ?;
126
126
127
- // NOTE: if a anyhow occurred earlier in `start_daemon`, the server will _not_ be joined -
127
+ // NOTE: if a error occurred earlier in `start_daemon`, the server will _not_ be joined -
128
128
// instead it will get killed when the process exits.
129
129
webserver_thread
130
130
. join ( )
You can’t perform that action at this time.
0 commit comments