File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -50,9 +50,9 @@ builddeploy_steps: &builddeploy_steps
5050 # # consumer deployment
5151 # rm -rf buildenvvar
5252 # ./unsetenv.sh
53- ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-consumer-deployvar
54- source buildenvvar
55- ./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
53+ # ./buildenv.sh -e $DEPLOY_ENV -b ${LOGICAL_ENV}-${APPNAME}-consumer-deployvar
54+ # source buildenvvar
55+ # ./master_deploy.sh -d ECS -e $DEPLOY_ENV -t latest -s ${LOGICAL_ENV}-global-appvar,${LOGICAL_ENV}-${APPNAME}-appvar -i ${APPNAME}
5656 # # without kafka dynamodb
5757 # rm -rf buildenvvar
5858 # ./unsetenv.sh
Original file line number Diff line number Diff line change @@ -59,12 +59,12 @@ module.exports = {
5959 } ,
6060 RECONCILER :
6161 {
62- RECONCILER_ELAPSE_TIME : 600000 ,
63- RECONCILER_IGNORE_STATUS : 'PostgresUpdated' ,
64- RECONCILER_START_ELAPSE_TIME : 1 ,
65- RECONCILER_DIFF_PERIOD : 10 ,
66- RECONCILER_DURATION_TYPE : 'm' ,
67- RECONCILER_RETRY_COUNT : 1 ,
68- RECONCILER_POST_URL : 'http://ifxpg-migrator.topcoder-dev.com/kafkaevents'
62+ RECONCILER_ELAPSE_TIME : parseInt ( process . env . RECONCILER_ELAPSE_TIME || 600000 ) ,
63+ RECONCILER_IGNORE_STATUS : process . env . RECONCILER_IGNORE_STATUS || 'PostgresUpdated' ,
64+ RECONCILER_START_ELAPSE_TIME : parseInt ( process . env . RECONCILER_START_ELAPSE_TIME || 1 ) ,
65+ RECONCILER_DIFF_PERIOD : parseInt ( process . env . RECONCILER_DIFF_PERIOD || 10 ) ,
66+ RECONCILER_DURATION_TYPE : process . env . RECONCILER_DURATION_TYPE || 'm' ,
67+ RECONCILER_RETRY_COUNT : parseInt ( process . env . RECONCILER_RETRY_COUNT || 1 ) ,
68+ RECONCILER_POST_URL : process . env . RECONCILER_POST_URL || 'http://ifxpg-migrator.topcoder-dev.com/kafkaevents'
6969 }
7070}
You can’t perform that action at this time.
0 commit comments