Skip to content

Commit

Permalink
get endpoint from env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
sourabh1007 committed Oct 18, 2023
1 parent 32d39d1 commit 97f283c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace Microsoft.Azure.Cosmos.SDK.EmulatorTests

public abstract class ClientTelemetryTestsBase : BaseCosmosClientHelper
{
protected static readonly Uri telemetryServiceEndpoint = new Uri("https://tools.cosmos.azure.com/api/clienttelemetry/trace");
protected static readonly Uri telemetryServiceEndpoint = new Uri(ConfigurationManager.GetEnvironmentVariable<string>("CLIENT_TELEMETRY_SERVICE_ENDPOINT", "https://dummy.url/api/clienttelemetry"));

private static readonly List<string> preferredRegionList = new List<string>
{
Expand Down

0 comments on commit 97f283c

Please sign in to comment.