This repository was archived by the owner on Nov 5, 2024. It is now read-only.
generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 16
waitUntilLoadBalancersDeleted never resolves #639
Copy link
Copy link
Closed
aws/aws-sdk-js-v3
#6501Labels
bugSomething isn't workingSomething isn't workingelbv2service-apiThis issue pertains to the AWS APIThis issue pertains to the AWS API
Description
Checkboxes for prior research
- I've gone through Developer Guide and API reference
- I've checked AWS Forums and StackOverflow.
- I've searched for previous similar issues and didn't find any solution.
Describe the bug
The waiter, waitUntilLoadBalancersDeleted
, returns a promise that never resolves.
SDK version number
"@aws-sdk/client-elastic-load-balancing-v2": "^3.441.0"
Which JavaScript Runtime is this issue in?
Node.js
Details of the browser/Node.js/ReactNative version
v20.9.0
Reproduction Steps
import {
ElasticLoadBalancingV2Client,
waitUntilLoadBalancersDeleted,
} from "@aws-sdk/client-elastic-load-balancing-v2";
await waitUntilLoadBalancersDeleted(
{
client: new ElasticLoadBalancingV2Client({}),
},
{ Names: ["some-fake-name"] }
);
Observed Behavior
The promise from the waiter never resolves.
Expected Behavior
The promise should resolve immediately for non-existent load balancers.
Possible Solution
No response
Additional Information/Context
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingelbv2service-apiThis issue pertains to the AWS APIThis issue pertains to the AWS API