We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 998feaa commit 16f0498Copy full SHA for 16f0498
1 file changed
turbopack/crates/turbo-tasks-backend/src/backend/storage.rs
@@ -229,12 +229,11 @@ impl Storage {
229
// track_modification), so any_modified() is sufficient.
230
if flags.any_modified() {
231
if key.is_transient() {
232
- if cfg!(debug_assertions) {
233
- unreachable!(
234
- "found a modified transient task: {:?}",
235
- shared_value.get().get_persistent_task_type()
236
- );
237
- }
+ debug_assert!(
+ false,
+ "found a modified transient task: {:?}",
+ shared_value.get().get_persistent_task_type()
+ );
238
continue;
239
}
240
0 commit comments