We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fadd31 commit 72b9868Copy full SHA for 72b9868
pragma-ingestor/src/main.rs
@@ -9,7 +9,7 @@ mod error;
9
10
#[tokio::main]
11
async fn main() -> Result<(), Box<dyn std::error::Error>> {
12
- dotenv().expect(".env file not found");
+ let _ = dotenv(); // .env file is not present in prod
13
pragma_common::tracing::init_tracing();
14
info!(
15
"kafka configuration : hostname={:?}, group_id={}, topic={}",
0 commit comments