Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
robertchoi80 committed Jun 2, 2023
1 parent 840c78f commit 40845dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/domain/app-serve-app.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type AppServeAppTask struct {
ResourceSpec string `json:"resourceSpec,omitempty"` // resource spec of app pod
HelmRevision int32 `gorm:"default:0" json:"helmRevision,omitempty"` // revision of deployed helm release
Strategy string `json:"strategy,omitempty"` // deployment strategy (eg, rolling-update)
RollbackVersion string `json:"note,omitempty"` // rollback target version
RollbackVersion string `json:"rollbackVersion,omitempty"` // rollback target version
PvEnabled bool `json:"pvEnabled"`
PvStorageClass string `json:"pvStorageClass"`
PvAccessMode string `json:"pvAccessMode"`
Expand Down
2 changes: 1 addition & 1 deletion pkg/httpErrors/errorCode.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var errorMap = map[ErrorCode]string{
"A_INVALID_TOKEN": "사용자 토큰 오류",
"A_INVALID_USER_CREDENTIAL": "비밀번호가 일치하지 않습니다.",
"A_INVALID_ORIGIN_PASSWORD": "기존 비밀번호가 일치하지 않습니다.",
"A_INVALID_CODE": "인증번호가 일치하지 않습니다.",
"A_INVALID_CODE": "인증번호가 일치하지 않습니다.",
"A_NO_SESSION": "세션 정보를 찾을 수 없습니다.",
"A_EXPIRED_CODE": "인증번호가 만료되었습니다.",

Expand Down

0 comments on commit 40845dc

Please sign in to comment.