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 22, 2023
1 parent f06a1c1 commit 458cbdf
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 458cbdf

Please sign in to comment.