Skip to content

Commit 062d49c

Browse files
committed
Turned off Azure config support for now, causing issues
1 parent 67792c2 commit 062d49c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/FunnelWeb/Settings/SettingsModule.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ protected override void Load(ContainerBuilder builder)
2222
.As<IConnectionStringSettings>()
2323
.SingleInstance();
2424

25-
builder.Register(c => new ConfigSettingsAdapter(new XmlConfigSettings(bootstrapSettingsFilePath)))
25+
// This is for Azure connection string support, needs more thought on how to adapt/detect Azure
26+
//builder.Register(c => new ConfigSettingsAdapter(new XmlConfigSettings(bootstrapSettingsFilePath)))
27+
builder.Register(c => new XmlConfigSettings(bootstrapSettingsFilePath))
2628
.As<IConfigSettings>()
2729
.SingleInstance();
2830

0 commit comments

Comments
 (0)