-
Notifications
You must be signed in to change notification settings - Fork 283
Remove traits AsDataLakeClient and AsFileSystemClient #491
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
Conversation
…n. Matches CosmosClient in that it doesn't use Arc anymore. Still uses Arc e.g. in StorageAccountClient.new_emulator which should probably be removed as well. e2e test passes.
@rylev this is the follow-up I promised in #358 and as discussed yesterday. I tried keeping this first commit as small as possible but I did include removing the use of Arc to match the CosmosDB crate. I'm new to Arc so particularly interested in feedback there; I should probably remove Arc from data_lake clients more broadly. The e2e test passes with this commit. |
62be49f
to
6e8a774
Compare
…to_data_lake_client and into_file_system_client functions. Matches CosmosClient in that it doesn't use Arc and doesn't return Errors anymore. e2e test passes.
… function. Matches CosmosClient in that it doesn't use Arc anymore. Still uses Arc e.g. in StorageAccountClient.new_emulator which should probably be removed as well. e2e test passes." This reverts commit d252f98
… can no longer create a DataLakeClient and callers must use DataLakeClient.new() instead.
I attempted to remove AsStorageClient but this impacts areas I don't want to change in this PR, e.g. queue. Reverted those changes and limiting PR to data_lake only. |
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.
I have one small nit that needs to be addressed, but then we can merge. Thank you!!
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.
🎉
This is a follow-up that came out of #358.