Skip to content

Commit

Permalink
Fix HTTPListener.stopListening in multiple-listener scenarios.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ludwig committed Oct 3, 2024
1 parent a6e94a6 commit fc549e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/vibe/http/server.d
Original file line number Diff line number Diff line change
Expand Up @@ -1811,8 +1811,8 @@ struct HTTPListener {
logInfo("Stopped to listen for HTTP%s requests on %s:%s", l.tlsContext ? "S": "", l.bindAddress, l.bindPort);
s_listeners = s_listeners[0 .. lidx] ~ s_listeners[lidx+1 .. $];
}
break;
}
break;
}
}
}
Expand Down

0 comments on commit fc549e1

Please sign in to comment.