Skip to content

Commit

Permalink
fix(repeater): wait response when creating a new repeater (#167)
Browse files Browse the repository at this point in the history
fixes #165
  • Loading branch information
derevnjuk authored Oct 4, 2023
1 parent 336eac6 commit daebc9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SecTester.Repeater/Api/CreateRepeaterRequest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace SecTester.Repeater.Api;
internal record CreateRepeaterRequest : HttpRequest<RepeaterIdentity>
{
public CreateRepeaterRequest(string name, string? description) :
base("/api/v1/repeaters", HttpMethod.Post, expectReply: false)
base("/api/v1/repeaters", HttpMethod.Post)
{
var data = new
{
Expand Down

0 comments on commit daebc9c

Please sign in to comment.