Skip to content

Commit

Permalink
Fix #2238 - Disable LoraWANSupport in AWS
Browse files Browse the repository at this point in the history
  • Loading branch information
kbeaugrand committed Jun 23, 2023
1 parent dc9a782 commit 2172bef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ internal ProductionAWSConfigHandler(IConfiguration config)

public override bool OIDCValidateTokenReplay => this.config.GetValue(OIDCValidateTokenReplayKey, false);

public override bool AzureIsLoRaEnabled => bool.Parse(this.config[AzureIsLoRaFeatureEnabledKey] ?? "false");
public override bool AzureIsLoRaEnabled => false;

public override string AzureLoRaKeyManagementUrl => this.config[AzureLoRaKeyManagementUrlKey]!;

Expand Down

0 comments on commit 2172bef

Please sign in to comment.