We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6677c0a commit f0444b1Copy full SHA for f0444b1
src/utils/configure-aws.ts
@@ -57,7 +57,7 @@ function isValidEndpointUrl(url: string | undefined): boolean {
57
return (
58
(parsed.protocol === "http:" || parsed.protocol === "https:") &&
59
VALID_HOSTNAMES.includes(parsed.hostname) &&
60
- parsed.port // port must be present
+ parsed.port !== "" // port must be present
61
);
62
} catch {
63
return false;
0 commit comments