Add comment to explain startup server (ref #4005) (#4022)

* Add comment to explain startup server (ref #4005)

* ci
This commit is contained in:
Nutomic 2023-10-05 13:41:05 +02:00 committed by GitHub
parent 0115613f90
commit 4bf9947153
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -119,6 +119,7 @@ pub(crate) const REQWEST_TIMEOUT: Duration = Duration::from_secs(10);
pub async fn start_lemmy_server(args: CmdArgs) -> Result<(), LemmyError> {
let settings = SETTINGS.to_owned();
// return error 503 while running db migrations and startup tasks
let mut startup_server_handle = None;
if args.http_server {
startup_server_handle = Some(create_startup_server()?);