You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update "location" => "primary region" in the backend display table. (#8205)
* Remove --location from apphosting:backend:list. (#8272)
* Remove --location from apphosting:rollouts:create and error when more than one backend is found. (#8271)
* Remove --location from apphosting:backends:get and return the first backend if multiple are found. (#8260)
* Remove `--location` from apphosting:backends:delete (#8262)
* Remove --location from apphosting:backends:create and prompt for primary region. (#8264)
* Enable FDC connector evolution and insecure operations linter. (#8281)
* Enable FDC connector evolution and insecure operations linter.
* Enable in VSCode.
* Actually get VSCode working.
* Replace pkg with yao-pkg/pkg (#8328)
Co-authored-by: aalej <[email protected]>
* List regions of duplicate backend in warning/error message (#8285)
* Update dataconnect.yaml template to v1. (#8346)
* Remove support for node 18 (#8334)
---------
Co-authored-by: annajowang <[email protected]>
Co-authored-by: Joe Hanley <[email protected]>
Co-authored-by: Rosalyn Tan <[email protected]>
Co-authored-by: aalej <[email protected]>
`You have multiple backends with the same ${backendId} ID in regions: ${locations.join(", ")}. This is not allowed until we can support more locations. `+
547
+
"Please delete and recreate any backends that share an ID with another backend.",
548
+
);
549
+
}
550
+
if(backends.length===1){
551
+
returnbackends[0];
552
+
}
553
+
if(unreachable&&unreachable.length!==0){
554
+
logWarning(
555
+
`Backends with the following primary regions are unreachable: ${unreachable.join(", ")}.\n`+
556
+
"If your backend is in one of these regions, please try again later.",
557
+
);
558
+
}
559
+
thrownewFirebaseError(`No backend named ${backendId} found.`);
0 commit comments