Skip to content

Commit 15deb83

Browse files
Andrew Farriesroboquat
authored andcommitted
Camel-case struct field name for consistency
1 parent 8d7a926 commit 15deb83

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

install/installer/pkg/components/server/configmap.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ func configmap(ctx *common.RenderContext) ([]runtime.Object, error) {
5959
githubApp.LogLevel = cfg.WebApp.Server.GithubApp.LogLevel
6060
githubApp.MarketplaceName = cfg.WebApp.Server.GithubApp.MarketplaceName
6161
githubApp.WebhookSecret = cfg.WebApp.Server.GithubApp.WebhookSecret
62-
githubApp.CertSecretname = cfg.WebApp.Server.GithubApp.CertSecretName
62+
githubApp.CertSecretName = cfg.WebApp.Server.GithubApp.CertSecretName
6363
}
6464
return nil
6565
})

install/installer/pkg/components/server/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ type GitHubApp struct {
107107
CertPath string `json:"certPath"`
108108
MarketplaceName string `json:"marketplaceName"`
109109
LogLevel string `json:"logLevel"`
110-
CertSecretname string `json:"certSecretName"`
110+
CertSecretName string `json:"certSecretName"`
111111
}
112112

113113
type Session struct {

0 commit comments

Comments
 (0)