File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
src/WebJobs.Script.WebHost Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change @@ -23,13 +23,8 @@ public DefaultKeyValueConverterFactory(bool allowEncryption)
23
23
24
24
private static bool IsEncryptionSupported ( )
25
25
{
26
- if ( SystemEnvironment . Instance . IsLinuxContainerEnvironment ( ) )
27
- {
28
- // TEMP: https://github.com/Azure/azure-functions-host/issues/3035
29
- return false ;
30
- }
31
-
32
26
return SystemEnvironment . Instance . IsAppServiceEnvironment ( ) ||
27
+ SystemEnvironment . Instance . IsLinuxContainerEnvironment ( ) ||
33
28
SystemEnvironment . Instance . GetEnvironmentVariable ( AzureWebsiteLocalEncryptionKey ) != null ;
34
29
}
35
30
Original file line number Diff line number Diff line change 57
57
<PackageReference Include =" Microsoft.Azure.WebJobs.Host.Storage" Version =" 3.0.11" />
58
58
<PackageReference Include =" Microsoft.Azure.WebJobs.Logging" Version =" 3.0.11" />
59
59
<PackageReference Include =" Microsoft.Azure.KeyVault" Version =" 3.0.3" />
60
- <PackageReference Include =" Microsoft.Azure.WebSites.DataProtection" Version =" 2.1.88 -alpha" />
60
+ <PackageReference Include =" Microsoft.Azure.WebSites.DataProtection" Version =" 2.1.91 -alpha" />
61
61
<PackageReference Include =" System.Net.Primitives" Version =" 4.3.0" />
62
62
<PackageReference Include =" WindowsAzure.Storage" Version =" 9.3.1" />
63
63
<PackageReference Include =" StyleCop.Analyzers" Version =" 1.1.0-beta004" >
You can’t perform that action at this time.
0 commit comments