Skip to content

Commit f209fc3

Browse files
author
vikasrohit
authored
Merge pull request #68 from topcoder-platform/dev
Increasing resources and patch for handling immediately setting
2 parents 87dcc62 + f329116 commit f209fc3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

connect/notificationServices/email.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ function handler(topicName, messageJSON, notification) {
288288
}
289289
logger.debug('bundlePeriod=>', bundlePeriod);
290290

291-
if (bundlePeriod) {
291+
if (bundlePeriod && "immediately" !== bundlePeriod) {
292292
if (!SCHEDULED_EVENT_PERIOD[bundlePeriod]) {
293293
throw new Error(`User's '${notification.userId}' setting for service`
294294
+ ` '${SETTINGS_EMAIL_SERVICE_ID}' option 'bundlePeriod' has unsupported value '${bundlePeriod}'.`);

deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ make_task_def(){
119119
"name": "%s",
120120
"image": "%s.dkr.ecr.%s.amazonaws.com/%s:%s",
121121
"essential": true,
122-
"memory": 500,
123-
"cpu": 100,
122+
"memory": 1536,
123+
"cpu": 768,
124124
"environment": [
125125
{
126126
"name": "ENV",

0 commit comments

Comments
 (0)