-
Notifications
You must be signed in to change notification settings - Fork 980
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove --location from apphosting:rollouts:create and error when more than one backend is found. #8271
Remove --location from apphosting:rollouts:create and error when more than one backend is found. #8271
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -443,7 +443,7 @@ export async function getBackendForAmbiguousLocation( | |
let { unreachable, backends } = await apphosting.listBackends(projectId, "-"); | ||
if (unreachable && unreachable.length !== 0) { | ||
logWarning( | ||
`The following locations are currently unreachable: ${unreachable}.\n` + | ||
`The following locations are currently unreachable: ${unreachable.join(", ")}.\n` + | ||
"If your backend is in one of these regions, please try again later.", | ||
); | ||
} | ||
|
@@ -474,3 +474,33 @@ export async function getBackendForAmbiguousLocation( | |
}); | ||
return backendsByLocation.get(location)!; | ||
} | ||
|
||
/** | ||
* Fetches a backend from the server. If there are multiple backends with the name, it will throw an error | ||
* telling the user that there are other backends with the same name that need to be deleted. | ||
*/ | ||
export async function getBackend( | ||
projectId: string, | ||
backendId: string, | ||
): Promise<apphosting.Backend> { | ||
let { unreachable, backends } = await apphosting.listBackends(projectId, "-"); | ||
backends = backends.filter( | ||
(backend) => apphosting.parseBackendName(backend.name).id === backendId, | ||
); | ||
if (backends.length > 1) { | ||
throw new FirebaseError( | ||
`You have multiple backends with the same ${backendId} ID. This is not allowed until we can support more locations. ` + | ||
"Please delete and recreate any backends that share an ID with another backend.", | ||
); | ||
} | ||
if (backends.length === 1) { | ||
return backends[0]; | ||
} | ||
if (unreachable && unreachable.length !== 0) { | ||
logWarning( | ||
`Backends with the following primary regions are unreachable: ${unreachable.join(", ")}.\n` + | ||
"If your backend is in one of these regions, please try again later.", | ||
); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. should we return here? otherwise, it looks like we are throwing. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. hm this was intentional on my end. but IF there are unreachable locations I wanted to warn before throwing that error. the unreachable location may impact the backend the user wants to get, but it may also be completely unreleated. |
||
} | ||
throw new FirebaseError(`No backend named ${backendId} found.`); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
since we already have the backends, think it would be nice to list out locations where the conflict is arising.