Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Y-Sindo committed Nov 3, 2020
1 parent d32b810 commit 80874da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ internal abstract class CascadeOptionsSetup<SourceOptions, TargetOptions> : ICon
private protected readonly IOptionsMonitor<SourceOptions> _monitor;
private readonly IOptionsChangeTokenSource<SourceOptions> _changeTokenSource;

public CascadeOptionsSetup(IOptionsMonitor<SourceOptions> monitor, IOptionsChangeTokenSource<SourceOptions> changeTokenSource = null)
//Making 'tokenSource' optional avoids error when 'tokenSource' is unavailable.
public CascadeOptionsSetup(IOptionsMonitor<SourceOptions> monitor, IOptionsChangeTokenSource<SourceOptions> changeTokenSource = null)
{
_monitor = monitor;
_changeTokenSource = changeTokenSource;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public void WithCallingAssemblyTest()
Assert.Matches("^Microsoft.Azure.SignalR.Management.Tests/", productInfo);
}

[Fact(Skip = "The test fails for unknown reason in GitHub Actions."]
[Fact(Skip = "The test fails for unknown reason in GitHub Actions.")]
public async Task ConfigHotReloadTest()
{
string configPath = "temp.json";
Expand Down

0 comments on commit 80874da

Please sign in to comment.