Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/746-748-747 Implement Bulk Transfer Fulfil #118

Merged
Show file tree
Hide file tree
Changes from 32 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
85183e7
package-lock.json
ggrg Jun 12, 2019
7b52ebd
Fix issues with object store usage
ggrg Jun 12, 2019
7856e2e
Additional changes to Object Store and Kafka config
ggrg Jun 13, 2019
6102cdb
Add MONGODB.URI config
ggrg Jun 13, 2019
87f5ebd
Updated package.json
ggrg Jun 13, 2019
40d25e9
Add license info
ggrg Jun 13, 2019
4d42376
Updated integration tests run config
ggrg Jun 13, 2019
3930071
Merge branch 'feature/bulkTransfersPoc' of github.com:mojaloop/ml-api…
ggrg Jun 13, 2019
b44c2b4
Init BulkProcessingHandler
ggrg Jun 14, 2019
e19ae12
WIP #1
ggrg Jun 18, 2019
cc5a1bb
message.id=uuid() during Transfer Prepare
ggrg Jun 18, 2019
d1f0837
Removed kafkaConf.key
ggrg Jun 18, 2019
97f3fce
Fixed unit tests
ggrg Jun 18, 2019
e9d59a2
Unifying mongo schema definitions
ggrg Jun 19, 2019
c6cdf2a
Finilize ml-api-adapter, but unit tests hang
ggrg Jun 19, 2019
cf3e729
Fix mongoose unique index issue
ggrg Jun 19, 2019
6ee02b4
Fixed integration tests: uriParams added
ggrg Jun 19, 2019
3e8bf9c
Changes as per PR review comments
ggrg Jun 19, 2019
440b1ea
Putting central-object-store library - wip
ggrg Jun 20, 2019
2c02a6d
Re-factored objStore lib to be re-usable between both ml-api and cent…
mdebarros Jun 20, 2019
7062e52
Merge pull request #1 from mdebarros/feature/bulkTransfersPocObjStoreLib
ggrg Jun 20, 2019
0302dd7
Fixing issue with unit tests
ggrg Jun 20, 2019
71c57e6
Fix standard issues
ggrg Jun 20, 2019
761c096
Add mdebarros as contributor and remove unused code
ggrg Jun 20, 2019
65203be
Removing local objectStoreLib
ggrg Jun 20, 2019
d06d421
Merge branch 'feature/bulkTransfersPoc' of github.com:mojaloop/ml-api…
ggrg Jun 20, 2019
c1509e5
package.json issues
ggrg Jun 20, 2019
2455a0a
Fixed minor inconsistencies regarding the ObjStoreDb access across di…
ggrg Jun 20, 2019
9e2d185
Update swagger.yaml to accept and require a valid BulkTransfersIDPutR…
ggrg Jun 20, 2019
5f79bf1
Implement BulkTransfersByIDPut operation
ggrg Jun 21, 2019
21e8518
BulkFulfilHandler Draft Implementation
ggrg Jun 22, 2019
46bbc3b
Completed BulkTransferFulfil
ggrg Jun 22, 2019
c1571d7
central-object-store 6.4.1-snapshot
ggrg Jun 23, 2019
5014790
package.json update
ggrg Jun 24, 2019
9f6ac93
Fix integration tests issue
ggrg Jun 24, 2019
1fab737
Reset package.json cache
ggrg Jun 24, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions config/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,24 @@
"request.required.acks": "all"
}
}
},
"FULFIL": {
"config": {
"options": {
"messageCharset": "utf8"
},
"rdkafkaConf": {
"metadata.broker.list": "localhost:9092",
"client.id": "ml-prod-bulk-fulfil",
"event_cb": true,
"dr_cb": true,
"socket.keepalive.enable": true,
"queue.buffering.max.messages": 10000000
},
"topicConf": {
"request.required.acks": "all"
}
}
}
},
"TRANSFER": {
Expand Down
Loading