Skip to content

Commit

Permalink
Documenation Update v16 Part 3 (#2330)
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHinsh authored Sep 5, 2024
2 parents 4ff593c + 18f628b commit 7457136
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ private WorkItemData CreateWorkItem_Shell(ProjectData destProject, WorkItemData
}
else
{
throw new Exception(string.Format("WARNING: Unable to find '{0}' in the target project. Most likley this is due to a typo in the .json configuration under WorkItemTypeDefinition! ", destType));
throw new Exception(string.Format("WARNING: Unable to find '{0}' in the target project. Either the work item specific is from the source, or its being specified in the {tool} defenition in your configuration file! ", destType, nameof(WorkItemTypeMappingTool)));
}
activity?.Stop();
activity?.SetStatus(ActivityStatusCode.Ok);
Expand Down
4 changes: 2 additions & 2 deletions src/MigrationTools/Services/ActivitySourceProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ namespace MigrationTools.Services
public class ActivitySourceProvider
{
public static readonly string ActivitySourceName = "MigrationTools";
private static string OpenTelemetryConnectionString = "InstrumentationKey=823d0de3-69c9-42ee-b902-de7675f681bc;IngestionEndpoint=https://westeurope-5.in.applicationinsights.azure.com/;LiveEndpoint=https://westeurope.livediagnostics.monitor.azure.com/;ApplicationId=4dd8f684-2f91-48ac-974f-dc898b686786";
//private static string OpenTelemetryConnectionString = "InstrumentationKey=823d0de3-69c9-42ee-b902-de7675f681bc;IngestionEndpoint=https://westeurope-5.in.applicationinsights.azure.com/;LiveEndpoint=https://westeurope.livediagnostics.monitor.azure.com/;ApplicationId=4dd8f684-2f91-48ac-974f-dc898b686786";
private static string MigrationToolAIConnectionString = "InstrumentationKey=2d666f84-b3fb-4dcf-9aad-65de038d2772;IngestionEndpoint=https://northeurope-0.in.applicationinsights.azure.com/;LiveEndpoint=https://northeurope.livediagnostics.monitor.azure.com/;ApplicationId=9146fe72-5c18-48d7-a0f2-8fb891ef1277";


Expand All @@ -33,7 +33,7 @@ public class ActivitySourceProvider

public static string GetConnectionString()
{
return OpenTelemetryConnectionString;
return MigrationToolAIConnectionString;
}


Expand Down

0 comments on commit 7457136

Please sign in to comment.