Browse Source

Remove unused TestServerUrl constant

Deleted the hardcoded TestServerUrl constant from McpHttpClientService as it is no longer needed after testing.
pull/24677/head
Mansur Besleney 4 weeks ago
parent
commit
1fad743faa
  1. 3
      framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/McpHttpClientService.cs

3
framework/src/Volo.Abp.Cli.Core/Volo/Abp/Cli/Commands/Services/McpHttpClientService.cs

@ -17,8 +17,7 @@ namespace Volo.Abp.Cli.Commands.Services;
public class McpHttpClientService : ITransientDependency
{
private const string LogSource = nameof(McpHttpClientService);
// TODO: Remove hardcoded URL after testing
private const string TestServerUrl = "http://localhost:5100";
private static readonly JsonSerializerOptions JsonSerializerOptionsWeb = new(JsonSerializerDefaults.Web);
private static class ErrorMessages

Loading…
Cancel
Save