We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a79842 commit 8c953a9Copy full SHA for 8c953a9
1 file changed
rust/src/graphql-cli.rs
@@ -67,6 +67,9 @@ async fn main() -> Result<()> {
67
Ok::<_, anyhow::Error>(s)
68
})
69
.transpose()?;
70
+ if secret.is_none() {
71
+ tracing::warn!("Server is running WITHOUT authentication. Everyone has full access.");
72
+ }
73
74
tracing::info!("db_path {db_path} lwd_url {lwd_url} port {port}");
75
let coin = Coin::new()
0 commit comments