mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-04-28 16:19:48 +00:00
Fixed warnings when compiling for Windows
This commit is contained in:
parent
b984b4432e
commit
dcc616f5f0
@ -1,4 +1,6 @@
|
|||||||
|
#[cfg(unix)]
|
||||||
use std::collections::HashSet;
|
use std::collections::HashSet;
|
||||||
|
|
||||||
use log::info;
|
use log::info;
|
||||||
use once_cell::sync::Lazy;
|
use once_cell::sync::Lazy;
|
||||||
use rocket::config::Shutdown;
|
use rocket::config::Shutdown;
|
||||||
@ -27,7 +29,7 @@ pub fn start_runtime_api() {
|
|||||||
info!("Try to start the API server on 'http://localhost:{api_port}'...");
|
info!("Try to start the API server on 'http://localhost:{api_port}'...");
|
||||||
|
|
||||||
// The shutdown configuration for the runtime API server:
|
// The shutdown configuration for the runtime API server:
|
||||||
let mut shutdown = Shutdown {
|
let shutdown = Shutdown {
|
||||||
// We do not want to use the Ctrl+C signal to stop the server:
|
// We do not want to use the Ctrl+C signal to stop the server:
|
||||||
ctrlc: false,
|
ctrlc: false,
|
||||||
|
|
||||||
@ -37,6 +39,9 @@ pub fn start_runtime_api() {
|
|||||||
|
|
||||||
#[cfg(unix)]
|
#[cfg(unix)]
|
||||||
{
|
{
|
||||||
|
// Now, shutdown needs to be mutable:
|
||||||
|
let mut shutdown = shutdown;
|
||||||
|
|
||||||
// We do not want to use the termination signal to stop the server.
|
// We do not want to use the termination signal to stop the server.
|
||||||
// This option, however, is only available on Unix systems:
|
// This option, however, is only available on Unix systems:
|
||||||
shutdown.signals = HashSet::new();
|
shutdown.signals = HashSet::new();
|
||||||
|
Loading…
Reference in New Issue
Block a user