From 5cb3d6980278b8bd4c8bb6a7c9e02e3cfc192b53 Mon Sep 17 00:00:00 2001 From: Cole Helbling Date: Tue, 23 Apr 2024 08:59:00 -0700 Subject: [PATCH] Revert "wip: intentionally bust post-build-hook" This reverts commit 1e258373b53803410d0638f3746ac17e4fd0eef7. --- 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 7aba629..31cee73 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-pathssss", &args.server)) + .post(format!("http://{}/api/enqueue-paths", &args.server)) .header(reqwest::header::CONTENT_TYPE, "application/json") .body( serde_json::to_string(&request)