Skip to content

Commit

Permalink
fix(repeater): refuse an empty response to CreateRepeaterRequest
Browse files Browse the repository at this point in the history
closes #146
  • Loading branch information
derevnjuk committed Dec 20, 2022
1 parent a417a8c commit e95b6d7
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 @@ -9,7 +9,7 @@ namespace SecTester.Repeater.Api;
internal record CreateRepeaterRequest : HttpRequest<Unit>
{
public CreateRepeaterRequest(string name, string? description) :
base("/api/v1/repeaters", HttpMethod.Post)
base("/api/v1/repeaters", HttpMethod.Post, expectReply: false)
{
var data = new
{
Expand Down

0 comments on commit e95b6d7

Please sign in to comment.