Skip to content

Commit af096e4

Browse files
authored
fix: oidc response (#1272)
1 parent 474dcd2 commit af096e4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/handlers/http/ingest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ pub async fn ingest(
8989
};
9090

9191
let log_source_entry = LogSourceEntry::new(log_source.clone(), fields);
92-
92+
9393
PARSEABLE
9494
.create_stream_if_not_exists(
9595
&stream_name,

src/handlers/http/modal/query_server.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,9 @@ impl ParseableServer for QueryServer {
148148

149149
tokio::spawn(airplane::server());
150150

151-
let result = self.start(shutdown_rx, prometheus.clone(), None).await;
151+
let result = self
152+
.start(shutdown_rx, prometheus.clone(), PARSEABLE.options.openid())
153+
.await;
152154
// Cancel sync jobs
153155
cancel_tx.send(()).expect("Cancellation should not fail");
154156

0 commit comments

Comments
 (0)