-
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
APP-3283: Implemented datafeed id reuse #79
Conversation
self.datafeed_client = self.bot_client.get_datafeed_client() | ||
self.datafeed_id_repository = OnDiskDatafeedIdRepository(self.config.get_datafeed_id_folder_path()) |
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.
as it is specific to v1 only is it a logic we could push down to the subclass?
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.
Indeed but it would require to duplicate this logic in AsyncDataFeedEventService
and in DataFeedEventServiceV1
.
Was able to test it on devx1 by sending a message OBO. |
Ticket
APP-3283
Description
Implementing reuse and persistence of datafeed id when using DFv1
Checklist