-
Notifications
You must be signed in to change notification settings - Fork 27
Reuse installed ginkgo and use cleaner binary check #609
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
base: main
Are you sure you want to change the base?
Changes from all commits
d1ff94b
9a05fc3
04f0eba
f39aca4
1e9545d
acfd175
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -96,7 +96,7 @@ func (c *CAPIClient) IsAuthorized(sourceId string, clientToken string) bool { | |
| } | ||
|
|
||
| func (c *CAPIClient) HasApp(sourceID, authToken string) bool { | ||
| req, err := http.NewRequest(http.MethodGet, c.addr+"/v3/apps/"+sourceID, nil) | ||
| req, err := http.NewRequest(http.MethodGet, c.addr+"/v3/apps/"+sourceID, nil) //#nosec G704 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please use
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good point. There are several instances where there |
||
| if err != nil { | ||
| c.log.Printf("failed to build authorize log access request: %s", err) | ||
| return false | ||
|
|
@@ -130,7 +130,7 @@ func (c *CAPIClient) GetRelatedSourceIds(appNames []string, authToken string) ma | |
| return map[string][]string{} | ||
| } | ||
|
|
||
| req, err := http.NewRequest(http.MethodGet, c.addr+"/v3/apps", nil) | ||
| req, err := http.NewRequest(http.MethodGet, c.addr+"/v3/apps", nil) //#nosec G704 | ||
jorbaum marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| if err != nil { | ||
| c.log.Printf("failed to build app list request: %s", err) | ||
| return map[string][]string{} | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.