We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1641ed4 commit c3e4da8Copy full SHA for c3e4da8
crates/socket-patch-cli/src/commands/scan.rs
@@ -53,13 +53,10 @@ pub async fn run(args: ScanArgs) -> i32 {
53
std::env::set_var("SOCKET_API_TOKEN", token);
54
}
55
56
- let (api_client, use_public_proxy) = get_api_client_from_env(args.org.as_deref()).await;
+ let (api_client, _use_public_proxy) = get_api_client_from_env(args.org.as_deref()).await;
57
58
- let effective_org_slug: Option<&str> = if use_public_proxy {
59
- None
60
- } else {
61
- None // org slug is already stored in the client
62
- };
+ // org slug is already stored in the client
+ let effective_org_slug: Option<&str> = None;
63
64
let crawler_options = CrawlerOptions {
65
cwd: args.cwd.clone(),
0 commit comments