Skip to content

Commit 87016d5

Browse files
authored
Bug 2000247 - Block experimenter-backend pings (#2859)
1 parent 6765d86 commit 87016d5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ingestion-beam/src/main/java/com/mozilla/telemetry/decoder/MessageScrubber.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,12 @@ public static void scrub(Map<String, String> attributes, ObjectNode json)
392392
throw new AffectedByBugException("1733118");
393393
}
394394

395+
// temporary block to allow the tables to be deleted
396+
// https://bugzilla.mozilla.org/show_bug.cgi?id=2000247
397+
if ("experimenter-backend".equals(namespace)) {
398+
throw new AffectedByBugException("2000247");
399+
}
400+
395401
}
396402

397403
/**

0 commit comments

Comments
 (0)