From 301025ef07764a56c8567a195b06b22b9fac62e9 Mon Sep 17 00:00:00 2001 From: Kenzie Davisson <43759233+kenzieschmoll@users.noreply.github.com> Date: Wed, 20 Dec 2023 20:45:54 -0800 Subject: [PATCH] Remove survey metadata redirect (#9954) this redirect was accidentally committed. related: https://github.com/flutter/website/commit/919cb746459fb46a80ea69244557e0ffebf55388 The goal is to land https://github.com/flutter/website/pull/9942, but we need to confirm the redirects are working even on master. I was noticing some strange behavior there with trying to access the cloud storage urls but I have not had time to dig into it. This redirect is causing some failures on master so we need to land this asap. Once this is green and approved, feel free to land as I'm going to be away from my computer starting tomorrow. --- firebase.json | 1 - 1 file changed, 1 deletion(-) diff --git a/firebase.json b/firebase.json index 926f9959eb..c69536e100 100644 --- a/firebase.json +++ b/firebase.json @@ -49,7 +49,6 @@ { "source": "/development/:rest*", "destination": "/:rest*", "type": 301 }, { "source": "/devtools/:rest*", "destination": "/tools/devtools/:rest*", "type": 301 }, { "source": "/downloads/:resource*", "destination": "/resources/:resource*", "type": 301 }, - { "source": "/f/dart-devtools-survey-metadata.json", "destination": "https://storage.googleapis.com/flutter-uxr/surveys/devtools-survey-metadata.json", "type": 301 }, { "source": "/f/flutter-survey-metadata.json", "destination": "https://storage.googleapis.com/flutter-uxr/surveys/flutter-survey-metadata.json", "type": 301 }, { "source": "/faq", "destination": "/resources/faq", "type": 301 }, { "source": "/fastlane-cd", "destination": "/deployment/cd#fastlane", "type": 301 },