Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conf/docker/docker-compose.mini.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ services:

mc-iam-manager:
container_name: mc-iam-manager
image: cloudbaristaorg/mc-iam-manager:0.5.3
image: cloudbaristaorg/mc-iam-manager:0.6.2
restart: unless-stopped
networks:
- mc-iam-manager-network
Expand Down
6 changes: 3 additions & 3 deletions conf/docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ services:

mc-iam-manager:
container_name: mc-iam-manager
image: cloudbaristaorg/mc-iam-manager:0.6.0
image: cloudbaristaorg/mc-iam-manager:0.6.2
restart: unless-stopped
networks:
- mc-iam-manager-network
Expand Down Expand Up @@ -1110,7 +1110,7 @@ services:
exec docker-entrypoint.sh postgres"

mc-web-console-api:
image: cloudbaristaorg/mc-web-console-api:0.6.0
image: cloudbaristaorg/mc-web-console-api:0.6.2
pull_policy: always
container_name: mc-web-console-api
platform: linux/amd64
Expand Down Expand Up @@ -1154,7 +1154,7 @@ services:
<<: *default-health-check

mc-web-console-front:
image: cloudbaristaorg/mc-web-console-front:0.6.0
image: cloudbaristaorg/mc-web-console-front:0.6.2
pull_policy: always
container_name: mc-web-console-front
platform: linux/amd64
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/apicall/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ func SetAuth() {
func SetReqData() error {
if inputFileData != "" {
if isVerbose {
fmt.Printf("use [%s] data file\n" + inputFileData)
fmt.Printf("use [%s] data file\n", inputFileData)
}

// 파일에서 데이터 읽기
Expand All @@ -359,7 +359,7 @@ func SetReqData() error {
req.SetBody(data)
} else {
if isVerbose {
fmt.Printf("request data : %s\n" + sendData)
fmt.Printf("request data : %s\n", sendData)
}
req.SetBody(sendData)
}
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/rest/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ func SetHeaders() {
func SetReqData() error {
if inputFileData != "" {
if isVerbose {
fmt.Printf("use [%s] data file\n" + inputFileData)
fmt.Printf("use [%s] data file\n", inputFileData)
}

// 파일에서 데이터 읽기
Expand All @@ -127,7 +127,7 @@ func SetReqData() error {
req.SetBody(data)
} else {
if isVerbose {
fmt.Printf("request data : %s\n" + sendData)
fmt.Printf("request data : %s\n", sendData)
}
req.SetBody(sendData)
}
Expand Down