Skip to content

Commit 00b4fdf

Browse files
authored
Fixed Aspire Console Output (#7004)
1 parent a1955f2 commit 00b4fdf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/HotChocolate/Fusion/src/Aspire/Composition/FusionGatewayConfigurationHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ private static void ExportSubgraphSchemaDocs(IReadOnlyList<GatewayInfo> gateways
3030
continue;
3131
}
3232

33-
Console.WriteLine("Expoorting schema document for subgraph {0} ...", subgraph.Name);
33+
Console.WriteLine("Exporting schema document for subgraph {0} ...", subgraph.Name);
3434

3535
var workingDirectory = System.IO.Path.GetDirectoryName(subgraph.Path)!;
3636

@@ -64,7 +64,7 @@ private static void ExportSubgraphSchemaDocs(IReadOnlyList<GatewayInfo> gateways
6464
if (process.ExitCode != 0)
6565
{
6666
Console.WriteLine(
67-
"{0}(1,1): error HF1002: ; Failed to export schema document for subgraph {1} ...",
67+
"{0}(1,1): error HF1002: Failed to export schema document for subgraph {1} ...",
6868
subgraph.Path,
6969
subgraph.Name);
7070
Environment.Exit(-255);

0 commit comments

Comments
 (0)