From ef4bd6fb912edc40749a2c703dad859bfb79934f Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Thu, 16 Jan 2025 18:34:39 -0500 Subject: [PATCH] drop 429 notice --- gha-cache/src/api.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/gha-cache/src/api.rs b/gha-cache/src/api.rs index 3b42d66..9bf4515 100644 --- a/gha-cache/src/api.rs +++ b/gha-cache/src/api.rs @@ -649,13 +649,6 @@ impl AtomicCircuitBreaker for AtomicBool { } = e { tracing::info!("Disabling GitHub Actions Cache due to 429: Too Many Requests"); - let title = "Magic Nix Cache was rate-limited by GitHub Actions."; - let msg = "\ - Turn Magic Nix Cache into a cache for your whole team. \ - Move beyond GitHub's limits, save time, and share builds outside CI with FlakeHub Cache. \ - See: https://dtr.mn/github-cache-limits\ - "; - println!("::notice title={title}::{msg}"); self.store(true, Ordering::Relaxed); callback(); }