recycleactor commited on
Commit
927bdee
·
verified ·
1 Parent(s): 6fcdbdf

Upload 3 files

Browse files
Files changed (2) hide show
  1. Cargo.toml +1 -0
  2. src/main.rs +1 -1
Cargo.toml CHANGED
@@ -9,6 +9,7 @@ edition = "2021"
9
  axum = "0.7"
10
  http = "1.0"
11
  tower-http = { version = "0.5", features = ["cors", "trace", "compression-br", "compression-deflate", "compression-gzip"] }
 
12
  tracing-subscriber = "0.3"
13
  tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
14
  serde = { version = "1.0", features = ["derive"] }
 
9
  axum = "0.7"
10
  http = "1.0"
11
  tower-http = { version = "0.5", features = ["cors", "trace", "compression-br", "compression-deflate", "compression-gzip"] }
12
+ tracing = "0.1"
13
  tracing-subscriber = "0.3"
14
  tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs"] }
15
  serde = { version = "1.0", features = ["derive"] }
src/main.rs CHANGED
@@ -2842,7 +2842,7 @@ async fn warm_arl(State(state): State<AppState>, Json(req): Json<WarmArlReq>) ->
2842
  return json_error(StatusCode::SERVICE_UNAVAILABLE, format!("warm:renew:{e}"));
2843
  }
2844
  }
2845
- (c.session_tokens())
2846
  };
2847
 
2848
  store_arl_session(&state, &arl, &session.0, &session.1).await;
 
2842
  return json_error(StatusCode::SERVICE_UNAVAILABLE, format!("warm:renew:{e}"));
2843
  }
2844
  }
2845
+ c.session_tokens()
2846
  };
2847
 
2848
  store_arl_session(&state, &arl, &session.0, &session.1).await;