aws / aws/aws-elastic-beanstalk-cli

eb deploy hangs on describe_event API call

Open
#90 2 comments 4 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
181
Forks
88
PR merge metrics
No merged PRs in 30d

Description

**Describe the bug**
`eb deploy` hangs - but did not yesterday. From `--debug` it looks like it is hanging on the 'describe_events' API call.

**Platform/OS/Hardware/Device**
circleci/python:3.8 docker image (https://hub.docker.com/r/circleci/python)
Here is the config.yml file:
```
version: 2.0

jobs:

build:
docker:
- image: circleci/openjdk:stretch
steps:
- checkout
- run: ./mvnw -Dmaven.test.skip=true package -P release
- persist_to_workspace:
root: .
paths:
- .

test:
docker:
- image: circleci/openjdk:stretch
steps:
- checkout
- attach_workspace:
at: .
- run: ./mvnw verify
- run:
name: upload test coverage report
command: |
export CODECOV_TOKEN='------'
bash <(curl -s https://codecov.io/bash)

deploy:
docker:
- image: circleci/python:3.8
steps:
- checkout
- attach_workspace:
at: .
- run:
name: target contents
command: ls ./target
- run:
name: Install awscli
command: |
sudo pip install awsebcli --upgrade
- run:
name: Create AWS credentials manually
command: |
mkdir ~/.aws
touch ~/.aws/config
chmod 600 ~/.aws/config
echo "[profile eb-cli]" > ~/.aws/config
echo "aws_access_key_id=$AWS_ACCESS_KEY_ID" >> ~/.aws/config
echo "aws_secret_access_key=$AWS_SECRET_ACCESS_KEY" >> ~/.aws/config
- run:
name: Deploy to EB if branch is Production
command: |
eb deploy Covidradarmadrid-env --debug -l $CIRCLE_BUILD_NUM-deploy



workflows:
version: 2
build-then-test:
jobs:
- build
- test:
requires:
- build
- deploy:
requires:
- test
filters:
branches:
only: production
```

**Expected behavior**
Yesterday the project deployed to eb instance without a problem. Today it hangs during upload.

**Logs/output**
```
2021-08-27 19:58:51,764 (DEBUG) cement.core.foundation : laying cement for the 'eb' application
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'pre_setup'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'post_setup'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'pre_run'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'post_run'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'pre_argument_parsing'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'post_argument_parsing'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'pre_close'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'post_close'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'signal'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'pre_render'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : defining hook 'post_render'
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : registering hook 'add_handler_override_options' from cement.core.foundation into hooks['post_setup']
2021-08-27 19:58:51,764 (DEBUG) cement.core.hook : registering hook 'handler_override' from cement.core.foundation into hooks['post_argument_parsing']
2021-08-27 19:58:51,764 (DEBUG) cement.core.handler : defining handler type 'extension' (IExtension)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'log' (ILog)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'config' (IConfig)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'mail' (IMail)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'plugin' (IPlugin)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'output' (IOutput)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'argument' (IArgument)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'controller' (IController)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : defining handler type 'cache' (ICache)
2021-08-27 19:58:51,765 (DEBUG) cement.core.handler : registering handler '' into handlers['extension']['cement']
2021-08-27 19:58:51,806 (DEBUG) cement.ext.ext_plugin : plugin config dir /etc/eb/plugins.d does not exist.
2021-08-27 19:58:51,806 (DEBUG) cement.ext.ext_plugin : plugin config dir /home/circleci/.eb/plugins.d does not exist.
2021-08-27 19:58:51,812 (DEBUG) ebcli.core.hooks : -- EBCLI Version: 3.20.1
2021-08-27 19:58:51,812 (DEBUG) ebcli.core.hooks : -- Python Version: 3.8.11 (default, Aug 17 2021, 15:56:41)
[GCC 10.2.1 20210110]
2021-08-27 19:58:51,812 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,814 (DEBUG) ebcli.objects.sourcecontrol : Getting current branch name by performing `git rev-parse --abbrev-ref HEAD`
2021-08-27 19:58:51,818 (DEBUG) ebcli.objects.sourcecontrol : production
2021-08-27 19:58:51,818 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,821 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,823 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,825 (DEBUG) ebcli.objects.sourcecontrol : Getting current branch name by performing `git rev-parse --abbrev-ref HEAD`
2021-08-27 19:58:51,828 (DEBUG) ebcli.objects.sourcecontrol : production
2021-08-27 19:58:51,828 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,830 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,833 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,835 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,837 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,839 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:51,841 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_environment api wrapper
2021-08-27 19:58:51,841 (DEBUG) ebcli.lib.aws : Creating new Botocore Session
2021-08-27 19:58:51,841 (DEBUG) ebcli.lib.aws : Botocore version: 1.21.31
2021-08-27 19:58:51,848 (DEBUG) ebcli.lib.aws : Creating new Botocore Client for elasticbeanstalk
2021-08-27 19:58:51,888 (DEBUG) ebcli.lib.aws : Successfully created session for elasticbeanstalk
2021-08-27 19:58:51,889 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_environments) to region: eu-south-1 with args:{'IncludeDeleted': False, 'EnvironmentNames': ['********************']}
2021-08-27 19:58:52,432 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:52,432 (DEBUG) ebcli.lib.aws : Response: {'Environments': [{'EnvironmentName': '********************', 'EnvironmentId': 'e-9xsumh8jr4', 'ApplicationName': 'covid-radar-madrid', 'VersionLabel': '221-deploy', 'SolutionStackName': '64bit Amazon Linux 2 v3.2.4 running Corretto 11', 'PlatformArn': 'arn:aws:elasticbeanstalk:eu-south-1::platform/Corretto 11 running on 64bit Amazon Linux 2/3.2.4', 'EndpointURL': 'awseb-AWSEB-LBJ6SI4E2MKC-1808099391.eu-south-1.elb.amazonaws.com', 'CNAME': '********************.eba-wbgad2ub.eu-south-1.elasticbeanstalk.com', 'DateCreated': datetime.datetime(2021, 2, 8, 17, 20, 35, 530000, tzinfo=tzlocal()), 'DateUpdated': datetime.datetime(2021, 8, 27, 19, 51, 58, 670000, tzinfo=tzlocal()), 'Status': 'Ready', 'AbortableOperationInProgress': False, 'Health': 'Green', 'HealthStatus': 'Ok', 'Alerts': [], 'Tier': {'Name': 'WebServer', 'Type': 'Standard', 'Version': '1.0'}, 'EnvironmentLinks': [], 'EnvironmentArn': 'arn:aws:elasticbeanstalk:eu-south-1:664064597842:environment/covid-radar-madrid/********************'}], 'ResponseMetadata': {'RequestId': '8301c7be-ea94-4fae-9480-09360e8b1924', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:52 GMT', 'RetryAttempts': 0}}
2021-08-27 19:58:52,432 (DEBUG) ebcli.lib.elasticbeanstalk : Inside describe_platform_version api wrapper
2021-08-27 19:58:52,432 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_platform_version) to region: eu-south-1 with args:{'PlatformArn': 'arn:aws:elasticbeanstalk:eu-south-1::platform/Corretto 11 running on 64bit Amazon Linux 2/3.2.4'}
2021-08-27 19:58:52,624 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:52,624 (DEBUG) ebcli.lib.aws : Response: {'PlatformDescription': {'PlatformArn': 'arn:aws:elasticbeanstalk:eu-south-1::platform/Corretto 11 running on 64bit Amazon Linux 2/3.2.4', 'PlatformOwner': 'AWSElasticBeanstalk', 'PlatformName': 'Corretto 11 running on 64bit Amazon Linux 2', 'PlatformVersion': '3.2.4', 'SolutionStackName': '64bit Amazon Linux 2 v3.2.4 running Corretto 11', 'PlatformStatus': 'Ready', 'DateCreated': datetime.datetime(2021, 7, 30, 9, 43, 41, 396000, tzinfo=tzlocal()), 'DateUpdated': datetime.datetime(2021, 7, 30, 20, 18, 21, 483000, tzinfo=tzlocal()), 'PlatformCategory': 'Corretto', 'Description': '64bit Amazon Linux 2 running Corretto 11', 'Maintainer': 'aws-elasticbeanstalk-platforms@amazon.com', 'OperatingSystemName': 'Amazon Linux', 'OperatingSystemVersion': '2', 'ProgrammingLanguages': [{'Name': 'Corretto', 'Version': '11'}], 'Frameworks': [{'Name': '', 'Version': ''}], 'CustomAmiList': [{'VirtualizationType': 'pv', 'ImageId': ''}, {'VirtualizationType': 'hvm', 'ImageId': 'ami-0fe14dfd293fef9ed'}], 'SupportedTierList': ['WebServer/Standard', 'Worker/SQS/HTTP'], 'SupportedAddonList': ['Log/CloudWatch', 'Log/S3', 'Monitoring/Healthd', 'WorkerDaemon/SQSD'], 'PlatformLifecycleState': 'Recommended', 'PlatformBranchName': 'Corretto 11 running on 64bit Amazon Linux 2', 'PlatformBranchLifecycleState': 'Supported'}, 'ResponseMetadata': {'RequestId': 'ba473409-747e-4bc8-81e1-3d1858643280', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:52 GMT', 'RetryAttempts': 0}}
2021-08-27 19:58:52,624 (DEBUG) ebcli.lib.elasticbeanstalk : Inside list_platform_branches api wrapper
2021-08-27 19:58:52,624 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, list_platform_branches) to region: eu-south-1 with args:{'Filters': [{'Attribute': 'BranchName', 'Operator': '=', 'Values': ['Corretto 11 running on 64bit Amazon Linux 2']}]}
2021-08-27 19:58:52,754 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:52,754 (DEBUG) ebcli.lib.aws : Response: {'PlatformBranchSummaryList': [{'PlatformName': 'Java', 'BranchName': 'Corretto 11 running on 64bit Amazon Linux 2', 'BranchOrder': '10000', 'LifecycleState': 'Supported', 'SupportedTierList': ['WebServer/Standard', 'Worker/SQS/HTTP']}], 'ResponseMetadata': {'RequestId': '3be6e83c-4ebc-47c5-a238-ff2174ca337d', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:52 GMT', 'RetryAttempts': 0}}
2021-08-27 19:58:52,755 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:52,755 (INFO) eb : Deploying code to ******************** in region eu-south-1
2021-08-27 19:58:52,755 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:52,760 (DEBUG) ebcli.objects.sourcecontrol : Getting current branch name by performing `git rev-parse --abbrev-ref HEAD`
2021-08-27 19:58:52,766 (DEBUG) ebcli.objects.sourcecontrol : production
2021-08-27 19:58:52,767 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:52,772 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:52,777 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:52,781 (DEBUG) ebcli.operations.gitops : Branch not found
2021-08-27 19:58:52,782 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:52,782 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:53,016 (DEBUG) ebcli.objects.sourcecontrol : Result of `git diff --numstat`:
2021-08-27 19:58:53,020 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:53,022 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_storage_location api wrapper
2021-08-27 19:58:53,023 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, create_storage_location) to region: eu-south-1 with args:{}
2021-08-27 19:58:53,164 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:53,164 (DEBUG) ebcli.lib.aws : Response: {'S3Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'ResponseMetadata': {'RequestId': '90f04588-0603-4413-81da-2b31753cea57', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:53 GMT', 'RetryAttempts': 0}}
2021-08-27 19:58:53,164 (DEBUG) ebcli.lib.aws : Creating new Botocore Client for s3
2021-08-27 19:58:53,200 (DEBUG) ebcli.lib.aws : Successfully created session for s3
2021-08-27 19:58:53,200 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_objects) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Prefix': 'covid-radar-madrid/224-deploy.jar'}
2021-08-27 19:58:53,629 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:53,629 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': '4CRYARS54JH1R46N', 'HostId': '9ta+9umoklRhCoblab9UoWP5IJ76yfxcSMdVmWNObyg++uj3cF+zHF8ivWJPpGH/DZ/LAfkyUEo=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:54 GMT', 'RetryAttempts': 0}, 'IsTruncated': False, 'Marker': '', 'Name': 'elasticbeanstalk-eu-south-1-664064597842', 'Prefix': 'covid-radar-madrid/224-deploy.jar', 'MaxKeys': 1000, 'EncodingType': 'url'}
2021-08-27 19:58:53,629 (INFO) eb : Uploading archive to s3 location: covid-radar-madrid/224-deploy.jar
2021-08-27 19:58:53,629 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:53,629 (DEBUG) ebcli.lib.s3 : Upload Application Version. File size = 34104151
2021-08-27 19:58:53,629 (DEBUG) ebcli.lib.s3 : Doing multi-threaded upload. Parts Needed=7
2021-08-27 19:58:53,629 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_multipart_uploads) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Prefix': 'covid-radar-madrid/224-deploy.jar'}
2021-08-27 19:58:53,742 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:53,742 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': '4CRMYQNAYA28GDJM', 'HostId': '/hkxbtUmq431d/E5eTTXC2f6n+XcouF7kE6GpxVaPls1nJB7EGhkpmaHrIgWluJgm+pt9v58VKY=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:54 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'KeyMarker': '', 'UploadIdMarker': '', 'NextKeyMarker': '', 'Prefix': 'covid-radar-madrid/224-deploy.jar', 'NextUploadIdMarker': '', 'MaxUploads': 1000, 'IsTruncated': False}
2021-08-27 19:58:53,742 (DEBUG) ebcli.lib.aws : Making api call: (s3, create_multipart_upload) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar'}
2021-08-27 19:58:53,856 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:53,856 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': '4CRK8H4SZ1FCWD4P', 'HostId': 'hsEBF23zf6x3CEDiOAvT/3fopr4DxE1FVWfHvglJp1z1vpF60CKFP6URk9JRn1ewl07jOQGTgXY=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:54 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}

Uploading: [--------------------------------------------------] 0% 2021-08-27 19:58:53,856 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,857 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,857 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,857 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,857 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,857 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,858 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,858 (DEBUG) ebcli.lib.s3 : Creating child thread
2021-08-27 19:58:53,860 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_parts) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}
2021-08-27 19:58:53,863 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_parts) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}
2021-08-27 19:58:53,867 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_parts) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}
2021-08-27 19:58:53,870 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_parts) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}
2021-08-27 19:58:53,873 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_parts) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}
2021-08-27 19:58:53,877 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_parts) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}
2021-08-27 19:58:53,878 (DEBUG) ebcli.lib.aws : Making api call: (s3, list_parts) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA'}
2021-08-27 19:58:53,879 (DEBUG) ebcli.lib.s3 : No data left, closing
2021-08-27 19:58:53,973 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:53,974 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': '4CRMHQ9RZSE1H939', 'HostId': 'I7KkUnS98uV0SsIHZFYoyBQN58DrK+2kYjiGn/CtVuGpx4dDQ6drpWl51nIMLaFu6Fws6UtfDpY=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:54 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'PartNumberMarker': 0, 'NextPartNumberMarker': 0, 'MaxParts': 1000, 'IsTruncated': False, 'Initiator': {'ID': 'arn:aws:iam::664064597842:user/CircleCI-eb', 'DisplayName': 'CircleCI-eb'}, 'Owner': {'ID': '496f9c9153f926d81ad2af4c3bedabadad2e2c26f39df7fcb0ea8557748f3442'}, 'StorageClass': 'STANDARD'}
2021-08-27 19:58:53,978 (DEBUG) ebcli.lib.aws : Making api call: (s3, upload_part) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'Body': <_io.BytesIO object at 0x7f280fbd9860>, 'PartNumber': 1}
2021-08-27 19:58:54,298 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:54,298 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGP0BA09T69T46S', 'HostId': 'Jh7CdFrwXy3UI0HLSac7FbwpFnKkRLb/lfoWss+4IEdKO1ipSegHQl42CcuUeuxbfnQDzV8nSCQ=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'PartNumberMarker': 0, 'NextPartNumberMarker': 0, 'MaxParts': 1000, 'IsTruncated': False, 'Initiator': {'ID': 'arn:aws:iam::664064597842:user/CircleCI-eb', 'DisplayName': 'CircleCI-eb'}, 'Owner': {'ID': '496f9c9153f926d81ad2af4c3bedabadad2e2c26f39df7fcb0ea8557748f3442'}, 'StorageClass': 'STANDARD'}
2021-08-27 19:58:54,301 (DEBUG) ebcli.lib.aws : Making api call: (s3, upload_part) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'Body': <_io.BytesIO object at 0x7f280fbe8310>, 'PartNumber': 2}
2021-08-27 19:58:54,308 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:54,308 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGKXGTE7XXKG5TT', 'HostId': 'xY3Ex8IXCrhoK+NUDfRVbXCzC82ALhJC8D5lXgWQ8X/Z2uQoXVgx+5qrnjhUOSa4T3PK9W5AXQU=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'PartNumberMarker': 0, 'NextPartNumberMarker': 0, 'MaxParts': 1000, 'IsTruncated': False, 'Initiator': {'ID': 'arn:aws:iam::664064597842:user/CircleCI-eb', 'DisplayName': 'CircleCI-eb'}, 'Owner': {'ID': '496f9c9153f926d81ad2af4c3bedabadad2e2c26f39df7fcb0ea8557748f3442'}, 'StorageClass': 'STANDARD'}
2021-08-27 19:58:54,312 (DEBUG) ebcli.lib.aws : Making api call: (s3, upload_part) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'Body': <_io.BytesIO object at 0x7f280fbf4db0>, 'PartNumber': 6}
2021-08-27 19:58:54,315 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:54,315 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:54,315 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGZT4Z15K0VRAXZ', 'HostId': 'wPUZ7TuJZkN5WnsFLFNaMbQreDD4M8b3QRtBKU7od752CYi9G6OgM7JD4vtXNK69xaQRMS15DV0=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'PartNumberMarker': 0, 'NextPartNumberMarker': 0, 'MaxParts': 1000, 'IsTruncated': False, 'Initiator': {'ID': 'arn:aws:iam::664064597842:user/CircleCI-eb', 'DisplayName': 'CircleCI-eb'}, 'Owner': {'ID': '496f9c9153f926d81ad2af4c3bedabadad2e2c26f39df7fcb0ea8557748f3442'}, 'StorageClass': 'STANDARD'}
2021-08-27 19:58:54,316 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:54,317 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGG45M17BQBZ8YC', 'HostId': '2DNwDA/soW1B06AdgZQuFhw2BQZciscLyDrSpO6TwEo8LVwj5eHU/Vl3hHl4FPzW2RIPKFsQazQ=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'PartNumberMarker': 0, 'NextPartNumberMarker': 0, 'MaxParts': 1000, 'IsTruncated': False, 'Initiator': {'ID': 'arn:aws:iam::664064597842:user/CircleCI-eb', 'DisplayName': 'CircleCI-eb'}, 'Owner': {'ID': '496f9c9153f926d81ad2af4c3bedabadad2e2c26f39df7fcb0ea8557748f3442'}, 'StorageClass': 'STANDARD'}
2021-08-27 19:58:54,321 (DEBUG) ebcli.lib.aws : Making api call: (s3, upload_part) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'Body': <_io.BytesIO object at 0x7f280fbf4d10>, 'PartNumber': 4}
2021-08-27 19:58:54,321 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGNGB3TEJTPK7TV', 'HostId': 'BgbdCErEMU0OtQpmXiu7ImnxSWy67kdOKrkHN5mjqEON6P3GjlNyYNCvX9Bfyvo7iMgK+PCVYVE=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'PartNumberMarker': 0, 'NextPartNumberMarker': 0, 'MaxParts': 1000, 'IsTruncated': False, 'Initiator': {'ID': 'arn:aws:iam::664064597842:user/CircleCI-eb', 'DisplayName': 'CircleCI-eb'}, 'Owner': {'ID': '496f9c9153f926d81ad2af4c3bedabadad2e2c26f39df7fcb0ea8557748f3442'}, 'StorageClass': 'STANDARD'}
2021-08-27 19:58:54,325 (DEBUG) ebcli.lib.aws : Making api call: (s3, upload_part) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'Body': <_io.BytesIO object at 0x7f280fbf4a40>, 'PartNumber': 5}
2021-08-27 19:58:54,327 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:54,329 (DEBUG) ebcli.lib.aws : Making api call: (s3, upload_part) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'Body': <_io.BytesIO object at 0x7f280fbf4a90>, 'PartNumber': 7}
2021-08-27 19:58:54,332 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGTFFDP0T8T71MS', 'HostId': 'WEfnS7Jjfcax3UnPb46kvqWhjenM/23utHe6l0yrgW5kG2X/4Xffv1FdvJ+BGOMdie4Aa5b7azw=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'PartNumberMarker': 0, 'NextPartNumberMarker': 0, 'MaxParts': 1000, 'IsTruncated': False, 'Initiator': {'ID': 'arn:aws:iam::664064597842:user/CircleCI-eb', 'DisplayName': 'CircleCI-eb'}, 'Owner': {'ID': '496f9c9153f926d81ad2af4c3bedabadad2e2c26f39df7fcb0ea8557748f3442'}, 'StorageClass': 'STANDARD'}
2021-08-27 19:58:54,338 (DEBUG) ebcli.lib.aws : Making api call: (s3, upload_part) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'Body': <_io.BytesIO object at 0x7f280fc111d0>, 'PartNumber': 3}
2021-08-27 19:58:55,107 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,107 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGY4B5PW5SFSVMW', 'HostId': 'AFtq6ihEWmOXSm0KKPwQ9q5LvBL8VR++kbzSzQdQYroWqTdOAoqwLS3lBeMfxuybfJcEV5HY+lo=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'ETag': '"5adc3ecaaf77769c4d3b7cc18b3c1a77"'}

Uploading: [#######-------------------------------------------] 14% 2021-08-27 19:58:55,108 (DEBUG) ebcli.lib.s3 : No data left, closing
2021-08-27 19:58:55,376 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,376 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGT4X3K2M9E00P8', 'HostId': 'nvDA18SVmEe7bUIoA+/k9+Hn7DaazGHUYZQnOiDRpFNkHbsGX8c+6LQgkhezHndhvhasQJ2aWsc=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'ETag': '"b0eb1e637e5f7d8a1433477de4483fcd"'}

Uploading: [##############------------------------------------] 29% 2021-08-27 19:58:55,376 (DEBUG) ebcli.lib.s3 : No data left, closing
2021-08-27 19:58:55,506 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,506 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGTGC2H0WD3VW17', 'HostId': 'Fdd8joqG4NkoT1IINzDObRzeaHhMMnJhrT0tn+s3I5+KtcNcx8PivoJa4gVfoE/m3barY/O97Io=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'ETag': '"3a8540689f5343f71708911eebb89de2"'}

Uploading: [#####################-----------------------------] 43% 2021-08-27 19:58:55,507 (DEBUG) ebcli.lib.s3 : No data left, closing
2021-08-27 19:58:55,567 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,567 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGRCFN11SGX346G', 'HostId': 'jBAPJpp4seHxro6NlsJDAoHsozkSUuNsGtpbXdmtf/Rt1y6Ru2e3A02meNBNABiCxO42+8W+u6U=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'ETag': '"2eed3c2c99edfdff63ac2a6c3243fb8a"'}

Uploading: [#############################---------------------] 57% 2021-08-27 19:58:55,568 (DEBUG) ebcli.lib.s3 : No data left, closing
2021-08-27 19:58:55,570 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,571 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGPYD55KBRR76YC', 'HostId': '72fd4Tdy9cuteMLtzTeSTEmDhDN9+tUG6g7kNQahxAQG670LxN1JQyKtY1u5/AB5I3iC2m+oTeA=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'ETag': '"d0dafc6c53c2baf90ef9d95ca39c7672"'}

Uploading: [####################################--------------] 71% 2021-08-27 19:58:55,571 (DEBUG) ebcli.lib.s3 : No data left, closing
2021-08-27 19:58:55,591 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,591 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGQVY9XSFN6QDGG', 'HostId': 'MovcJkBVH0H8VfVg1ptycGH4KEPbZFw8rDAl8OOsSmwiVpE/EjBh70QyEDIVnExfkt77JOeXPqM=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'ETag': '"832a2afc87ae596bab849789e83f801c"'}

Uploading: [###########################################-------] 86% 2021-08-27 19:58:55,592 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,592 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'QZGMGYBNZYYSJTR7', 'HostId': 's/hzhjS9wkSYp+ZmZKz3/Q8R6pmUB1WT7E1hqOL+mgk4rtZi8+veIwJ0KkK+f16yAQGPOSKq6+Q=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:55 GMT', 'RetryAttempts': 0}, 'ETag': '"0f6442023060271eae0abc5b776ed28f"'}
2021-08-27 19:58:55,593 (DEBUG) ebcli.lib.s3 : No data left, closing

Uploading: [##################################################] 100% Done...

2021-08-27 19:58:55,593 (DEBUG) ebcli.lib.s3 : No data left, closing
2021-08-27 19:58:55,593 (DEBUG) ebcli.lib.aws : Making api call: (s3, complete_multipart_upload) to region: eu-south-1 with args:{'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'UploadId': 'c1VTkuT4AXLVcphJqUi1.zSihaVhn4AwlX0ktB3X0kXChK.hA0at9nqN9hH8rE9GLSVAN0k6ahpiDR1VtkBGAm4aeqM.BCQSHwE1mGcGM7HXgcox6UGx.7FAHGUnORxA', 'MultipartUpload': {'Parts': [{'PartNumber': 1, 'ETag': '"5adc3ecaaf77769c4d3b7cc18b3c1a77"'}, {'PartNumber': 2, 'ETag': '"2eed3c2c99edfdff63ac2a6c3243fb8a"'}, {'PartNumber': 3, 'ETag': '"832a2afc87ae596bab849789e83f801c"'}, {'PartNumber': 4, 'ETag': '"3a8540689f5343f71708911eebb89de2"'}, {'PartNumber': 5, 'ETag': '"d0dafc6c53c2baf90ef9d95ca39c7672"'}, {'PartNumber': 6, 'ETag': '"0f6442023060271eae0abc5b776ed28f"'}, {'PartNumber': 7, 'ETag': '"b0eb1e637e5f7d8a1433477de4483fcd"'}]}}
2021-08-27 19:58:55,790 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:55,791 (DEBUG) ebcli.lib.aws : Response: {'ResponseMetadata': {'RequestId': 'AA77EDK51BWHSS7G', 'HostId': 'icbOIB5tP/IPiwwA2f8U+xrb452o/Cw6F7GgWoZ1TCyxNHRKm6ahcddnzsI5hcIuq50akK/4Bf0=', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:56 GMT', 'RetryAttempts': 0}, 'Location': 'https://elasticbeanstalk-eu-south-1-664064597842.s3.eu-south-1.amazonaws.com/covid-radar-madrid%2F224-deploy.jar', 'Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'Key': 'covid-radar-madrid/224-deploy.jar', 'ETag': '"bed0f345d16a1633bc4f8b16ed72085f-7"'}
2021-08-27 19:58:55,791 (DEBUG) ebcli.core.fileoperations : Project root found at: /home/circleci/project
2021-08-27 19:58:55,791 (INFO) eb : Creating AppVersion 224-deploy
2021-08-27 19:58:55,791 (DEBUG) ebcli.lib.elasticbeanstalk : Inside create_application_version api wrapper
2021-08-27 19:58:55,791 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, create_application_version) to region: eu-south-1 with args:{'ApplicationName': 'covid-radar-madrid', 'VersionLabel': '224-deploy', 'Process': False, 'Description': "Specified environment name as part of 'eb deploy' command", 'SourceBundle': {'S3Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'S3Key': 'covid-radar-madrid/224-deploy.jar'}}
2021-08-27 19:58:56,181 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:56,181 (DEBUG) ebcli.lib.aws : Response: {'ApplicationVersion': {'ApplicationName': 'covid-radar-madrid', 'Description': "Specified environment name as part of 'eb deploy' command", 'VersionLabel': '224-deploy', 'SourceBundle': {'S3Bucket': 'elasticbeanstalk-eu-south-1-664064597842', 'S3Key': 'covid-radar-madrid/224-deploy.jar'}, 'DateCreated': datetime.datetime(2021, 8, 27, 19, 58, 55, 996000, tzinfo=tzlocal()), 'DateUpdated': datetime.datetime(2021, 8, 27, 19, 58, 55, 996000, tzinfo=tzlocal()), 'Status': 'UNPROCESSED'}, 'ResponseMetadata': {'RequestId': 'cfe674e2-48c4-41aa-95f7-b17e61428745', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:56 GMT', 'RetryAttempts': 0}}
2021-08-27 19:58:56,181 (DEBUG) ebcli.lib.elasticbeanstalk : Inside update_env_application_version api wrapper
2021-08-27 19:58:56,181 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, update_environment) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'VersionLabel': '224-deploy'}
2021-08-27 19:58:57,030 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:57,030 (DEBUG) ebcli.lib.aws : Response: {'EnvironmentName': '********************', 'EnvironmentId': 'e-9xsumh8jr4', 'ApplicationName': 'covid-radar-madrid', 'VersionLabel': '224-deploy', 'SolutionStackName': '64bit Amazon Linux 2 v3.2.4 running Corretto 11', 'PlatformArn': 'arn:aws:elasticbeanstalk:eu-south-1::platform/Corretto 11 running on 64bit Amazon Linux 2/3.2.4', 'EndpointURL': 'awseb-AWSEB-LBJ6SI4E2MKC-1808099391.eu-south-1.elb.amazonaws.com', 'CNAME': '********************.eba-wbgad2ub.eu-south-1.elasticbeanstalk.com', 'DateCreated': datetime.datetime(2021, 2, 8, 17, 20, 35, 530000, tzinfo=tzlocal()), 'DateUpdated': datetime.datetime(2021, 8, 27, 19, 58, 56, 582000, tzinfo=tzlocal()), 'Status': 'Updating', 'AbortableOperationInProgress': True, 'Health': 'Grey', 'Alerts': [], 'Tier': {'Name': 'WebServer', 'Type': 'Standard', 'Version': '1.0'}, 'EnvironmentArn': 'arn:aws:elasticbeanstalk:eu-south-1:664064597842:environment/covid-radar-madrid/********************', 'ResponseMetadata': {'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:56 GMT', 'RetryAttempts': 0}}
2021-08-27 19:58:57,030 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:58:57,030 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:58:57,284 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:58:57,284 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '8fe11846-9779-491a-8c15-4b73ffdda887', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:58:57 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:02,289 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:02,289 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:02,680 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:02,680 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '65f36980-0307-4a3f-b777-60a6922c95d5', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:02 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:07,685 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:07,685 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:07,961 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:07,961 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '5bfb913e-007d-4f66-98cf-191dd96951dc', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:07 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:12,963 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:12,963 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:13,269 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:13,269 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '0c6243df-0eca-49fb-a636-2c79f0f59cb9', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:13 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:18,271 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:18,271 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:18,547 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:18,547 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '0ff1f635-98e9-41f9-afd1-a6bd0aabc2b3', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:18 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:23,551 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:23,551 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:23,881 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:23,881 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': 'bb69ac46-2674-4e19-b600-355a45fb205a', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:23 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:28,886 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:28,886 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:29,192 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:29,192 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '50ad9134-9e12-4867-a26a-56c42a8dd513', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:29 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:34,197 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:34,197 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:34,484 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:34,484 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '22fda5ee-27a4-4a2d-9b99-c9ea216e5f5d', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:34 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:39,489 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:39,489 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:39,721 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:39,721 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '53e20b7d-624b-4bc2-b554-eb589ce46408', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:39 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:44,726 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:44,726 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:44,993 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:44,993 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '4162a6ec-8672-47dd-be23-7331ff80ea8e', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:44 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:49,995 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:49,995 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:50,263 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:50,263 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': 'e44b4350-b653-4135-875b-c29ad5aba20c', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:50 GMT', 'RetryAttempts': 0}}
2021-08-27 19:59:55,269 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 19:59:55,269 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 19:59:55,525 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 19:59:55,526 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '679e66f3-3bd6-4783-b151-84f3a8f9318b', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 19:59:55 GMT', 'RetryAttempts': 0}}
2021-08-27 20:00:00,531 (DEBUG) ebcli.lib.elasticbeanstalk : Inside get_new_events api wrapper
2021-08-27 20:00:00,531 (DEBUG) ebcli.lib.aws : Making api call: (elasticbeanstalk, describe_events) to region: eu-south-1 with args:{'EnvironmentName': '********************', 'RequestId': '6c0b1475-205e-4aaf-a4aa-2b8b2082329a'}
2021-08-27 20:00:00,799 (DEBUG) ebcli.lib.aws : API call finished, status = 200
2021-08-27 20:00:00,799 (DEBUG) ebcli.lib.aws : Response: {'Events': [], 'ResponseMetadata': {'RequestId': '534e91b5-8352-4470-8669-fbb4a8b05675', 'HTTPStatusCode': 200, 'date': 'Fri, 27 Aug 2021 20:00:00 GMT', 'RetryAttempts': 0}}
```

Contributor guide

Open the contributing guide

Research direction

Start with the `eb deploy` entry point and reproduce the hang using the debug output, focusing on the `describe_events` API call. Trace where that call waits and verify that deployments complete instead of hanging; the issue names no source file or test to run.

Written by the indexing model from the issue text.

Assessment

Tech stack
aws, python
Domain
cli, cloud
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.