Skip to content

Commit

Permalink
Merge pull request #123 from Azure/fix-adls
Browse files Browse the repository at this point in the history
Fix bug in ADLS with endpoints
  • Loading branch information
Maddie Clayton authored Jan 11, 2019
2 parents dcb0189 + 5b8ef2a commit 5233e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Authentication.Abstractions/AzureEnvironmentConstants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,13 @@ public static class AzureEnvironmentConstants
/// <summary>
/// The domain name suffix for Azure DataLake services
/// </summary>
public const string AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix = "azuredatalakeanalytics.net/";
public const string AzureDataLakeStoreFileSystemEndpointSuffix = "azuredatalakestore.net/";
public const string AzureDataLakeAnalyticsCatalogAndJobEndpointSuffix = "azuredatalakeanalytics.net";
public const string AzureDataLakeStoreFileSystemEndpointSuffix = "azuredatalakestore.net";

/// <summary>
/// The token audience for authorizing DataLake requests
/// </summary>
public const string AzureDataLakeServiceEndpointResourceId = "https://datalake.azure.net";
public const string AzureDataLakeServiceEndpointResourceId = "https://datalake.azure.net/";

/// <summary>
/// The token audience for Batch data plane requests
Expand Down

0 comments on commit 5233e8d

Please sign in to comment.