Skip to content

Commit

Permalink
Update build telemetry uri
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Sep 16, 2024
1 parent 548ed4b commit 7ffb971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/IceRpc.ProtobufBuildTelemetry.Reporter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
rootCommand.SetHandler(
async (string compilationHash, int fileCount) =>
{
const string uri = "icerpc://telemetry.icerpc.dev";
const string uri = "icerpc://build-telemetry.icerpc.dev";
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(3));
await using var connection = new ClientConnection(new Uri(uri), new SslClientAuthenticationOptions());

Expand Down
2 changes: 1 addition & 1 deletion tools/IceRpc.SliceBuildTelemetry.Reporter/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
int referenceFileCount,
int sourceFileCount) =>
{
const string uri = "icerpc://telemetry.icerpc.dev";
const string uri = "icerpc://build-telemetry.icerpc.dev";
using var cts = new CancellationTokenSource(TimeSpan.FromSeconds(3));
await using var connection = new ClientConnection(new Uri(uri), new SslClientAuthenticationOptions());

Expand Down

0 comments on commit 7ffb971

Please sign in to comment.