You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[FAILED] Expected
<int>: 3
to match exit code:
<int>: 0
In [BeforeEach] at: /go/src/github.com/cloudfoundry/cf-acceptance-tests/helpers/services/sso.go:46
As a comparison, right before a successful curl. The value of apiInfoEndpoint is: http://api.xxx.cf-app.com/v2/info.
This shows that an error from earlier code path was not caught.
After tracing backward the code path, we suspect that this code somehow is not able to detect an error. Is it an issue in http.Client or in the broker's /cf_api_info_url endpoint?
The text was updated successfully, but these errors were encountered:
A "debugg-ability" issue.
current state
The failure we see in test output is:
Which corresponds to a non-zero exit code when curling the api info url. However, this is misleading. When we print out what the api info url is:
right before a failed curl. We see that the value of
apiInfoEndpoint
is:As a comparison, right before a successful curl. The value of
apiInfoEndpoint
is:http://api.xxx.cf-app.com/v2/info
.This shows that an error from earlier code path was not caught.
After tracing backward the code path, we suspect that this code somehow is not able to detect an error. Is it an issue in
http.Client
or in the broker's/cf_api_info_url
endpoint?The text was updated successfully, but these errors were encountered: