Skip to content

Commit 66c228a

Browse files
nit rename
1 parent 9c95f42 commit 66c228a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pkg/settings/cresettings/settings.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ var Default = Schema{
148148
RequestSizeLimit: Size(10 * config.KByte),
149149
ResponseSizeLimit: Size(100 * config.KByte),
150150
},
151-
ConfidentialHTTP: confidentialHttp{
151+
ConfidentialHTTP: confidentialHTTP{
152152
CallLimit: Int(5),
153153
ConnectionTimeout: Duration(10 * time.Second),
154154
RequestSizeLimit: Size(10 * config.KByte),
@@ -221,7 +221,7 @@ type Workflows struct {
221221
ChainRead chainRead
222222
Consensus consensus
223223
HTTPAction httpAction
224-
ConfidentialHTTP confidentialHttp
224+
ConfidentialHTTP confidentialHTTP
225225
Secrets secrets
226226
}
227227

@@ -259,7 +259,7 @@ type httpAction struct {
259259
RequestSizeLimit Setting[config.Size]
260260
ResponseSizeLimit Setting[config.Size]
261261
}
262-
type confidentialHttp struct {
262+
type confidentialHTTP struct {
263263
CallLimit Setting[int] `unit:"{call}"`
264264
ConnectionTimeout Setting[time.Duration]
265265
RequestSizeLimit Setting[config.Size]

0 commit comments

Comments
 (0)