-
Notifications
You must be signed in to change notification settings - Fork 38
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
PLAT-10343: Datafeed V2 service implementation #124
Conversation
In the BdkDatafeedConfig class, check if the `datafeed.version` configuration is specified. If not, the datafeed version equals `v1` In the ServiceFactory class, check if the datafeed version is configured as `v2`, return the DatafeedLoopV2 instance. Otherwise, the DatafeedLoopV1 will be used by default. Implementation the datafeed v2 loop service in DatafeedLoopV2 class
acd6e38
to
2abb649
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need to modify https://github.com/SymphonyPlatformSolutions/symphony-api-client-python/blob/2.0/docs/configuration.md?
Just to let appears that DF version can be changed through config.yaml
file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👌
Draft PR for early review without unittest yet
Ticket
PLAT-10343
Description
Datafeed V2 service implementation.
In the BdkDatafeedConfig class, check if the
datafeed.version
configuration isspecified. If not, the datafeed version equals
v1
In the ServiceFactory class, check if the datafeed version is configured as
v2
, returnthe DatafeedLoopV2 instance. Otherwise, the DatafeedLoopV1 will be used by default.
Implementation the datafeed v2 loop service in DatafeedLoopV2 class
Dependencies
List the other pull requests that should be merged before/along this one.
Checklist