ingestion-beam/src/main/java/com/mozilla/telemetry/transforms/KeyByBigQueryTableDestination.java [57:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    final String namespace = attributes.get(Attribute.DOCUMENT_NAMESPACE);
    final String docType = attributes.get(Attribute.DOCUMENT_TYPE);
    if (namespace != null) {
      attributes.put(Attribute.DOCUMENT_NAMESPACE, getAndCacheNormalizedName(namespace));
    }
    if (docType != null) {
      attributes.put(Attribute.DOCUMENT_TYPE, getAndCacheNormalizedName(docType));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ingestion-sink/src/main/java/com/mozilla/telemetry/ingestion/sink/transform/PubsubMessageToTemplatedString.java [79:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      final String namespace = attributes.get(Attribute.DOCUMENT_NAMESPACE);
      final String docType = attributes.get(Attribute.DOCUMENT_TYPE);
      if (namespace != null) {
        attributes.put(Attribute.DOCUMENT_NAMESPACE, getAndCacheNormalizedName(namespace));
      }
      if (docType != null) {
        attributes.put(Attribute.DOCUMENT_TYPE, getAndCacheNormalizedName(docType));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



