Skip to content

Commit

Permalink
fix: change DownloadLimit to correct type (int) (#119)
Browse files Browse the repository at this point in the history
* Change DownloadLimit to correct type (int)

* DownloadLimit datatype to int64
  • Loading branch information
AaronVickers authored Nov 21, 2023
1 parent 75ac6b7 commit 598ab18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion http_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type HTTPServer struct {
ContentRegex *string `json:"contentRegex,omitempty"`
CustomHeaders *CustomHeaders `json:"customHeaders,omitempty"`
DesiredStatusCode *string `json:"desiredStatusCode,omitempty"`
DownloadLimit *string `json:"downloadLimit,omitempty"`
DownloadLimit *int64 `json:"downloadLimit,omitempty"`
DNSOverride *string `json:"dnsOverride,omitempty"`
FollowRedirects *bool `json:"followRedirects,omitempty" te:"int-bool"`
Headers *[]string `json:"headers,omitempty"`
Expand Down

0 comments on commit 598ab18

Please sign in to comment.