File tree Expand file tree Collapse file tree 9 files changed +9
-9
lines changed
next/javascript-api/jslib/aws/SQSClient
v0.52.x/javascript-api/jslib/aws/SQSClient
v0.54.x/javascript-api/jslib/aws/SQSClient Expand file tree Collapse file tree 9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const testQueue = 'https://sqs.us-east-1.amazonaws.com/000000000/test-queue';
55
55
export default async function () {
56
56
// If our test queue does not exist, abort the execution.
57
57
const queuesResponse = await sqs .listQueues ();
58
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
58
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
59
59
exec .test .abort ();
60
60
}
61
61
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default async function () {
49
49
const queuesResponse = await sqs .listQueues ();
50
50
51
51
// If our test queue does not exist, abort the execution.
52
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
52
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
53
53
exec .test .abort ();
54
54
}
55
55
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ const testQueue = 'https://sqs.us-east-1.amazonaws.com/000000000/test-queue';
58
58
export default async function () {
59
59
// If our test queue does not exist, abort the execution.
60
60
const queuesResponse = await sqs .listQueues ();
61
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
61
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
62
62
exec .test .abort ();
63
63
}
64
64
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const testQueue = 'https://sqs.us-east-1.amazonaws.com/000000000/test-queue';
55
55
export default async function () {
56
56
// If our test queue does not exist, abort the execution.
57
57
const queuesResponse = await sqs .listQueues ();
58
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
58
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
59
59
exec .test .abort ();
60
60
}
61
61
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default async function () {
49
49
const queuesResponse = await sqs .listQueues ();
50
50
51
51
// If our test queue does not exist, abort the execution.
52
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
52
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
53
53
exec .test .abort ();
54
54
}
55
55
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ const testQueue = 'https://sqs.us-east-1.amazonaws.com/000000000/test-queue';
58
58
export default async function () {
59
59
// If our test queue does not exist, abort the execution.
60
60
const queuesResponse = await sqs .listQueues ();
61
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
61
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
62
62
exec .test .abort ();
63
63
}
64
64
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ const testQueue = 'https://sqs.us-east-1.amazonaws.com/000000000/test-queue';
55
55
export default async function () {
56
56
// If our test queue does not exist, abort the execution.
57
57
const queuesResponse = await sqs .listQueues ();
58
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
58
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
59
59
exec .test .abort ();
60
60
}
61
61
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ export default async function () {
49
49
const queuesResponse = await sqs .listQueues ();
50
50
51
51
// If our test queue does not exist, abort the execution.
52
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
52
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
53
53
exec .test .abort ();
54
54
}
55
55
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ const testQueue = 'https://sqs.us-east-1.amazonaws.com/000000000/test-queue';
58
58
export default async function () {
59
59
// If our test queue does not exist, abort the execution.
60
60
const queuesResponse = await sqs .listQueues ();
61
- if (queuesResponse .queueUrls .filter ((q ) => q === testQueue).length == 0 ) {
61
+ if (queuesResponse .urls .filter ((q ) => q === testQueue).length == 0 ) {
62
62
exec .test .abort ();
63
63
}
64
64
You can’t perform that action at this time.
0 commit comments