File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
defaults : &defaults
3
3
docker :
4
- - image : circleci /python:2.7-stretch -browsers
4
+ - image : cimg /python:3.11.7 -browsers
5
5
install_dependency : &install_dependency
6
6
name : Installation of build and deployment dependencies.
7
7
command : |
8
- sudo apt install jq
9
- sudo pip install awscli --upgrade
10
- sudo pip install docker-compose
8
+ sudo apt update
9
+ sudo apt install jq python3-pip
10
+ sudo pip3 install awscli --upgrade
11
11
12
12
install_deploysuite : &install_deploysuite
13
13
name : Installation of install_deploysuite.
14
14
# Git Clone -change back to v1.3 or latest once counter var is generalized.
15
15
command : |
16
- git clone --branch master https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
16
+ git clone --branch v1.4.14 https://github.com/topcoder-platform/tc-deploy-scripts ../buildscript
17
17
cp ./../buildscript/master_deploy.sh .
18
18
cp ./../buildscript/buildenv.sh .
19
19
cp ./../buildscript/awsconfiguration.sh .
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ async function getSequelize () {
27
27
await logger . endSpan ( span )
28
28
logger . info ( 'Database connection has been established successfully.' )
29
29
} catch ( e ) {
30
- await logger . endSpanWithErr ( span , e )
30
+ await logger . endSpanWithError ( span , e )
31
31
logger . error ( 'Unable to connect to the database:' , e )
32
32
}
33
33
}
You can’t perform that action at this time.
0 commit comments