Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 85f546e

Browse files
Merge pull request #33 from topcoder-platform/develop
PROD Release - resolve duplicate payment issue
2 parents dfe9d8f + e246750 commit 85f546e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.circleci/config.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
version: 2
22
defaults: &defaults
3-
docker:
4-
- image: circleci/node:15.5.1-stretch-browsers
3+
docker:
4+
- image: cimg/python:3.10.2
55
install_dependency: &install_dependency
66
name: Installation of build and deployment dependencies.
77
command: |
8-
sudo apt-get update
9-
sudo apt install jq python3-pip
10-
sudo pip3 install awscli --upgrade
11-
sudo pip3 install docker-compose
8+
pip3 install awscli --upgrade
9+
pip3 install docker-compose
1210
install_deploysuite: &install_deploysuite
1311
name: Installation of install_deploysuite.
1412
command: |
@@ -71,7 +69,6 @@ workflows:
7169
branches:
7270
only:
7371
- develop
74-
- dev-circleci
7572

7673
# Production builds are exectuted only on tagged commits to the
7774
# master branch.

src/services/ProcessorService.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ processCreate.schema = {
6363
originator: Joi.string().required(),
6464
timestamp: Joi.date().required(),
6565
'mime-type': Joi.string().required(),
66+
key: Joi.string().allow(null),
6667
payload: Joi.object().keys({
6768
id: Joi.id()
6869
}).required().unknown(true)
@@ -74,6 +75,7 @@ processUpdate.schema = {
7475
originator: Joi.string().required(),
7576
timestamp: Joi.date().required(),
7677
'mime-type': Joi.string().required(),
78+
key: Joi.string().allow(null),
7779
payload: Joi.object().keys({
7880
id: Joi.id()
7981
}).required().unknown(true)

0 commit comments

Comments
 (0)