Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
all(target_os = "linux", target_arch = "x86_64"),
all(target_os = "macos", target_arch = "aarch64")
)))]
use std::string::String as KafkaSslProtocol;

Check warning on line 40 in src/cli.rs

View workflow job for this annotation

GitHub Actions / Build for aarch64-unknown-linux-gnu

unused import: `std::string::String as KafkaSslProtocol`

/// Default username and password for Parseable server, used by default for local mode.
/// NOTE: obviously not recommended for production
Expand Down Expand Up @@ -367,7 +367,8 @@
#[derive(Parser, Debug)]
pub struct OidcConfig {
#[arg(
long = "oidc-client-id",
long = "oidc-client",
name = "oidc-client",
env = "P_OIDC_CLIENT_ID",
required = false,
help = "Client id for OIDC provider"
Expand All @@ -376,6 +377,7 @@

#[arg(
long = "oidc-client-secret",
name = "oidc-client-secret",
env = "P_OIDC_CLIENT_SECRET",
required = false,
help = "Client secret for OIDC provider"
Expand All @@ -384,6 +386,7 @@

#[arg(
long = "oidc-issuer",
name = "oidc-issuer",
env = "P_OIDC_ISSUER",
required = false,
value_parser = validation::url,
Expand Down
Loading