From 1e258373b53803410d0638f3746ac17e4fd0eef7 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Tue, 23 Apr 2024 08:41:58 -0700 Subject: [PATCH] wip: intentionally bust post-build-hook --- magic-nix-cache/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magic-nix-cache/src/main.rs b/magic-nix-cache/src/main.rs index 31cee73..7aba629 100644 --- a/magic-nix-cache/src/main.rs +++ b/magic-nix-cache/src/main.rs @@ -407,7 +407,7 @@ async fn post_build_hook(out_paths: &str) -> Result<()> { let request = api::EnqueuePathsRequest { store_paths }; let response = reqwest::Client::new() - .post(format!("http://{}/api/enqueue-paths", &args.server)) + .post(format!("http://{}/api/enqueue-pathssss", &args.server)) .header(reqwest::header::CONTENT_TYPE, "application/json") .body( serde_json::to_string(&request)