Skip to content

Commit a738b5f

Browse files
authored
Merge pull request #82 from topcoder-platform/dev
PROD - Changes for RDS consolidation
2 parents 37221e0 + eed17b7 commit a738b5f

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
version: 2
22
defaults: &defaults
33
docker:
4-
- image: circleci/python:2.7-stretch-browsers
4+
- image: cimg/python:3.11.7-browsers
55
install_dependency: &install_dependency
66
name: Installation of build and deployment dependencies.
77
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
1111
1212
install_deploysuite: &install_deploysuite
1313
name: Installation of install_deploysuite.
1414
#Git Clone -change back to v1.3 or latest once counter var is generalized.
1515
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
1717
cp ./../buildscript/master_deploy.sh .
1818
cp ./../buildscript/buildenv.sh .
1919
cp ./../buildscript/awsconfiguration.sh .

src/models/datasource.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ async function getSequelize () {
2727
await logger.endSpan(span)
2828
logger.info('Database connection has been established successfully.')
2929
} catch (e) {
30-
await logger.endSpanWithErr(span, e)
30+
await logger.endSpanWithError(span, e)
3131
logger.error('Unable to connect to the database:', e)
3232
}
3333
}

0 commit comments

Comments
 (0)