Skip to content

Commit

Permalink
feat(repeater): adopt self-deploying repeaters
Browse files Browse the repository at this point in the history
closes #174
  • Loading branch information
ostridm committed Jun 17, 2024
1 parent 9b215af commit 48b671f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/SecTester.Core/Dispatchers/HttpCommandDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
using System.Threading;
using System.Threading.Tasks;
using SecTester.Core.Bus;
using SecTester.Core.Utils;
using SecTester.Core.Commands;
using SecTester.Core.Extensions;
using SecTester.Core.Utils;

namespace SecTester.Core.Dispatchers;

Expand Down
6 changes: 3 additions & 3 deletions src/SecTester.Repeater/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ await using var repeater = await repeaterFactory.CreateRepeater(new RepeaterOpti

The `CreateRepeater` method accepts the options described below:

| Option | Description |
| :--------------------- | ----------------------------------------------------------------------------------------------------- |
| `namePrefix` | Enter a name prefix that will be used as a constant part of the unique name. By default, `sectester`. |
| Option | Description |
| :--------------------- |--------------------------------------------------------------------------------------------------------------------|
| `namePrefix` | Enter a name prefix that will be used as a constant part of the unique name. By default, the host name value used. |

The `Repeater` instance provides the `Start` method. This method is required to establish a connection with the Bright cloud engine and interact with other services.

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
using System.Net;
using System.Text;

namespace SecTester.Core.Tests.Extensions;

Expand Down
3 changes: 1 addition & 2 deletions test/SecTester.Core.Tests/Usings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@
global using SecTester.Core.Dispatchers;
global using SecTester.Core.Exceptions;
global using SecTester.Core.Extensions;
global using SecTester.Core.RetryStrategies;
global using SecTester.Core.Exceptions;
global using SecTester.Core.Logger;
global using SecTester.Core.RetryStrategies;
global using SecTester.Core.Utils;
global using Xunit;

0 comments on commit 48b671f

Please sign in to comment.