• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ThreeMammals / Ocelot / 26761608736

01 Jun 2026 02:34PM UTC coverage: 0.0% (-95.4%) from 95.403%
26761608736

Pull #2394

github

web-flow
Merge e39fc0db2 into e4022a7d8
Pull Request #2394: Harden `FileConfigurationPoller` against timer reentrancy and callback thread leaks, and stabilize `TimeoutDelegatingHandler` timeout test

0 of 7112 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
src/Ocelot/Infrastructure/Extensions/StringBuilderExtensions.cs
1
namespace Ocelot.Infrastructure.Extensions;
2

3
public static class StringBuilderExtensions
4
{
5

6
    /// <summary>Helper method to add a string to the key builder, using a comma as the default separator.</summary>
7
    /// <param name="builder">The key builder instance.</param>
8
    /// <param name="next">The next string to append.</param>
9
    /// <param name="separator">The character used to separate entries.</param>
10
    /// <returns>Returns the same builder instance.</returns>
11
    public static StringBuilder AppendNext(this StringBuilder builder, string next, char separator = ',')
12
    {
×
13
        if (builder.Length > 0)
×
14
        {
×
15
            builder.Append(separator);
×
16
        }
×
17

18
        return builder.Append(next);
×
19
    }
×
20
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc