wip: no, but do flakehub after shutting down the web server

This commit is contained in:
Cole Helbling 2024-04-24 15:17:35 -07:00
parent f06ed35360
commit 3bc019d996

View file

@ -45,18 +45,17 @@ async fn workflow_finish(
gha_cache.shutdown().await?;
}
// Wait for the Attic push workers to finish.
if let Some(attic_state) = state.flakehub_state.write().await.take() {
tracing::info!("Waiting for FlakeHub cache uploads to finish");
attic_state.push_session.wait().await?;
}
if let Some(sender) = state.shutdown_sender.lock().await.take() {
sender
.send(())
.map_err(|_| Error::Internal("Sending shutdown server message".to_owned()))?;
}
if let Some(attic_state) = state.flakehub_state.write().await.take() {
tracing::info!("Waiting for FlakeHub cache uploads to finish");
attic_state.push_session.wait().await?;
}
// NOTE(cole-h): see `init_logging`
let logfile = std::env::temp_dir().join("magic-nix-cache-tracing.log");
let logfile_contents = std::fs::read_to_string(logfile)?;