From 494ac63c9231e859202e1ce4f0f2098041e1ea77 Mon Sep 17 00:00:00 2001 From: LJ Date: Thu, 17 Apr 2025 16:20:56 -0700 Subject: [PATCH] Op name and specific input names shouldn't contribute to cache key. --- src/builder/analyzer.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/builder/analyzer.rs b/src/builder/analyzer.rs index 1121f125..33348fe0 100644 --- a/src/builder/analyzer.rs +++ b/src/builder/analyzer.rs @@ -726,8 +726,7 @@ impl AnalyzerContext<'_> { enable_cache, behavior_version, fingerprinter: Fingerprinter::default() - .with(&reactive_op.name)? - .with(&reactive_op.spec)? + .with(&op.op)? .with(&behavior_version)? .with(&output_type.without_attrs())?, output_type: output_type.typ.clone(),