mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-11-22 08:56:58 -06:00
push configuration check to veilid-server
This commit is contained in:
parent
25637e5ff5
commit
5ad4814515
@ -4,6 +4,9 @@
|
||||
#![deny(unused_must_use)]
|
||||
#![recursion_limit = "256"]
|
||||
|
||||
#[cfg(all(feature = "rt-async-std", windows))]
|
||||
compile_error! {"async-std compilation for windows is currently unsupported"}
|
||||
|
||||
mod client_api;
|
||||
mod server;
|
||||
mod settings;
|
||||
@ -77,6 +80,7 @@ pub struct CmdlineArgs {
|
||||
/// Turn on OpenTelemetry tracing
|
||||
///
|
||||
/// This option uses the GRPC OpenTelemetry protocol, not HTTP. The format for the endpoint is host:port, like 'localhost:4317'
|
||||
#[cfg(feature = "opentelemetry-otlp")]
|
||||
#[arg(long, value_name = "endpoint")]
|
||||
otlp: Option<String>,
|
||||
|
||||
|
@ -1 +1 @@
|
||||
compile_error!{"async-std compilation for windows is currently unsupported"}
|
||||
compile_error! {"async-std compilation for windows is currently unsupported"}
|
||||
|
Loading…
Reference in New Issue
Block a user