Skip to content

Commit eb762d4

Browse files
committed
final setup
1 parent 428e7b6 commit eb762d4

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

azure/azure-pr-teardown-pipeline.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ jobs:
6060
ID_SYNC_QUEUE_ARN=$(make -s output name=id_sync_queue_arn)
6161
echo "##vso[task.setvariable variable=ID_SYNC_QUEUE_ARN]$ID_SYNC_QUEUE_ARN"
6262
displayName: "Init Terraform and extract MNS values"
63-
condition: eq(1,2)
6463
6564
- bash: |
6665
export AWS_PROFILE=apim-dev
@@ -91,4 +90,3 @@ jobs:
9190
make destroy aws_account_no=${account_id} environment="$ENVIRONMENT" sub_environment="$SUB_ENVIRONMENT"
9291
displayName: Destroy terraform PR workspace and linked resources
9392
retryCountOnTaskFailure: 2
94-
condition: eq(1,2)

mns_subscription/src/unsubscribe_mns.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
def run_unsubscribe():
66
mns = get_mns_service()
7-
result = mns.delete_subscription("b3411490-0e4f-4d39-af48-30bce44f155e")
7+
result = mns.check_delete_subscription()
88
return result
99

1010

1111
if __name__ == "__main__":
1212
logging.basicConfig(level=logging.INFO)
1313
result = run_unsubscribe()
14-
logging.info(f"Subscription Result: {result}")
14+
logging.info(f"Subscription Status: {result}")

0 commit comments

Comments
 (0)