-
Notifications
You must be signed in to change notification settings - Fork 447
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
Suddenly System.Data.SqlClient is not supported on this platform #5095
Comments
I'm seeing this same issue in my production environment which is greatly impacting clients. Investigative information
Edit: I've pinned my function runtime to ~2 and that has resolved these issues. |
I am having a similar issue. Azure/Azure-Functions#1370 |
We're facing the exact same issue. Suddenly we're getting Edit: I've pinned my function runtime to ~2 as well and that has resolved the issue for me too. Thanks @graham-saunders |
Thank you for reporting this. For the cases described above, was there a re-deployment of the payload? @alveflo and @graham-saunders can you clarify what you mean when you say that you've pinned to
For applications using unstable version references like the one mentioned above, what happened is that you ended up getting a major version update for Azure Functions 3.0, which introduced that issue for you. We've posted this announcement a little while ago: Azure/app-service-announcements#207 Please subscribe to that repository, if you haven't yet, as we'll continue to use that for similar communication in the future. |
@fabiocav Changing to I've seen the Azure Functions 3.0 announcement, but could not predict the issue it would cause. However being on Anyway, thank you for the clarification, we shall be more careful with early releases channels for production code. |
App has been deployed and running without issues for a year. Suddenly this morning I was presented with a pile of
System.Data.SqlClient is not supported on this platform
exceptions.There were no deployments or any other updates to the app since Oct 2018.
What happened and why?
Investigative information
Please provide the following:
Repro steps
Here is csproj that worked for a year:
Provide the steps required to reproduce the problem:
It Exceptions appeared after I presumve some update of Azure Functions platform at about 7pm on 10th of Oct 2019
Expected behavior
Keep working without my involvement.
Known workarounds
Directly installing
<PackageReference Include="System.Data.SqlClient" Version="4.6.1" />
did the trick along with update tonetcoreapp2.2
(but I suspect the latter may not be related).The text was updated successfully, but these errors were encountered: