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 @@ -575,7 +575,7 @@ impl TestFrontend {
575
575
axum_app
576
576
. fallback (
577
577
build_strangler_service ( iron_server. socket )
578
- . expect ( "cloud not build strangler service" ) ,
578
+ . expect ( "could not build strangler service" ) ,
579
579
)
580
580
. into_make_service ( ) ,
581
581
)
@@ -608,7 +608,7 @@ impl TestFrontend {
608
608
trace ! ( "joining axum server thread" ) ;
609
609
self . axum_server_thread
610
610
. join ( )
611
- . expect ( "could not join axum background thread error " ) ;
611
+ . expect ( "could not join axum background thread" ) ;
612
612
613
613
trace ! ( "forgetting about iron" ) ;
614
614
// 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