-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Azure Tables integration | Support needed #1560
Comments
We don't actively support the implementation for 3rd party data layers but perhaps @dosu can offer some suggestions. In addition, have you tried using something like pyright to ensure there's no typing errors? |
The Here are a few steps to help you debug and resolve the issue:
By following these steps, you should be able to identify and correct the source of the |
@saimanoj1206 hi there did you managed to find this error , after utilizing your method i also experienced this :/ |
`import asyncio import aiofiles from azure.data.tables import TableClient, TableServiceClientfrom azure.data.tables.aio import TableClient, TableServiceClient _logger = logging.getLogger(name) class AzureTableDataLayer(BaseDataLayer):
` I have even handled feedback and keyword search, its not 100% optimal but nonetheless its working :) |
Hi,
I am currently working on integrating Azure Tables as the data layer for our application. I used AWS DynamoDB data layer implementation and translated it for Azure Tables. While the data is being successfully written to the Azure Tables, I am encountering an error when attempting to resume a thread on the UI (nothing is coming up in logs though)
I did check my logs and last method that was called is
get_thread
Here is the data layer that I wrote:
Any advice on debugging would be greatly appreciated.
The text was updated successfully, but these errors were encountered: