Skip to content

Commit f5ae061

Browse files
committed
Merge branch 'dev' into feature/add-jobIds
# Conflicts: # docs/Topcoder-bookings-api.postman_collection.json # docs/swagger.yaml
2 parents dc1cfa4 + de67dbe commit f5ae061

31 files changed

+5871
-3667
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ To be able to change and test `taas-es-processor` locally you can follow the nex
194194
| `npm run index:jobs <jobId>` | Indexes job data from db into ES, if jobId is not given all data is indexed. Use `-- --force` flag to skip confirmation |
195195
| `npm run index:job-candidates <jobCandidateId>` | Indexes job candidate data from db into ES, if jobCandidateId is not given all data is indexed. Use `-- --force` flag to skip confirmation |
196196
| `npm run index:resource-bookings <resourceBookingsId>` | Indexes resource bookings data from db into ES, if resourceBookingsId is not given all data is indexed. Use `-- --force` flag to skip confirmation |
197-
| `npm run index:work-periods <workPeriodId>` | Indexes work periods data from db into ES, if workPeriodId is not given all data is indexed. Use `-- --force` flag to skip confirmation |
198197
| `npm run services:up` | Start services via docker-compose for local development. |
199198
| `npm run services:down` | Stop services via docker-compose for local development. |
200199
| `npm run services:logs -- -f <service_name>` | View logs of some service inside docker-compose. |

config/default.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ module.exports = {
7676
ES_INDEX_JOB_CANDIDATE: process.env.ES_INDEX_JOB_CANDIDATE || 'job_candidate',
7777
// the resource booking index
7878
ES_INDEX_RESOURCE_BOOKING: process.env.ES_INDEX_RESOURCE_BOOKING || 'resource_booking',
79-
// the work period index
80-
ES_INDEX_WORK_PERIOD: process.env.ES_INDEX_WORK_PERIOD || 'work_period',
8179

8280
// the max bulk size in MB for ES indexing
8381
MAX_BULK_REQUEST_SIZE_MB: process.env.MAX_BULK_REQUEST_SIZE_MB || 20,

0 commit comments

Comments
 (0)