Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(service): switch from http to https #56

Draft
wants to merge 18 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
74329d4
fix(cli): consolidate and repair backend error handling
scott-howe-1 Nov 21, 2024
ebeea1a
fix(cli): Remove unnecessary log message.
scott-howe-1 Nov 21, 2024
43fcc13
docs(cli): add function description
scott-howe-1 Nov 21, 2024
b440888
feat(service): switch to using https (remove http)
scott-howe-1 Nov 21, 2024
6231ad2
feat(cli): add https support
scott-howe-1 Nov 21, 2024
528489f
Merge branch 'main' into feat/service-switch-to-https
scott-howe-1 Nov 22, 2024
e7822f5
Merge commit '211a099d878427fd0fbcc1089130285cbc1a34a5' into feat/ser…
scott-howe-1 Dec 2, 2024
2788573
fix(service): fix device discovery error handling during service star…
scott-howe-1 Dec 4, 2024
f6d7c55
refactor(cli): command usage and example string generation refactor a…
scott-howe-1 Dec 4, 2024
cd1aceb
Merge branch 'main' into feat/service-switch-to-https
scott-howe-1 Dec 4, 2024
5c63d28
feat(webui): device discovery in cfm webui (#58)
Meng-20 Dec 6, 2024
5a6dc7e
fix(docker): update the docker running command to make D-bus availabl…
Meng-20 Dec 6, 2024
4faa226
fix(service): fix error handling bugs during add blade\host (#61)
scott-howe-1 Dec 6, 2024
e35f12f
Merge branch 'main' into feat/service-switch-to-https
scott-howe-1 Dec 6, 2024
701d222
Merge branch 'main' into feat/service-switch-to-https
scott-howe-1 Dec 10, 2024
1b634df
Merge branch 'main' into feat/service-switch-to-https
scott-howe-1 Dec 11, 2024
22a3312
Merge branch 'main' into feat/service-switch-to-https
scott-howe-1 Dec 17, 2024
f194f8d
Merge branch 'main' into feat/service-switch-to-https
scott-howe-1 Dec 18, 2024
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
Prev Previous commit
Next Next commit
docs(cli): add function description
  • Loading branch information
scott-howe-1 committed Nov 21, 2024
commit 43fcc131abd3e47d66bb76b73d5e94ee497b678e
1 change: 1 addition & 0 deletions cli/pkg/serviceLib/serviceWrap/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ func NewApplianceBladeKey(applId, bladeId string) *ApplianceBladeKey {
}
}

//handleServiceError - common error handler function used after all cfm-service client calls.
func handleServiceError(response *http.Response, err error) error {
var status service.StatusMessage

Expand Down
Loading