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
{{ message }}
This repository was archived by the owner on Jul 24, 2024. It is now read-only.
[ ] Feature request
[ ] Regression (a behavior that used to work and stopped working in a new release)
[x] Bug report
[ ] Documentation issue or request
Description
While working on #7466 I noticed that the UI is not treating a verification unsupported status properly, showing any unsupported verification as validated instead:
The verification endpoint returns:
[{"status":"UNSUPPORTED","scope":"PARAMETERS","errors":[{"code":"unknown-connector","description":"No connector for ID i-M8PdK9xYED-7ijVaUwYz registered"}]}]
But the UI is showing as verified correctly. I suggest to either show an error or a warning mentioning the verification is not supported for that connector.
The text was updated successfully, but these errors were encountered:
Yeah, looks like currently the UI is only concerned with an ERROR response. We could probably add a case for UNSUPPORTED but I don't know if I'd expose that error message as it is to the user.
I guess if a connector doesn't support validation we should hide/disable the "Validate" button instead.
I agree @gashcrumb. The problem I can see right now is how we can drive UI on that direction as the configuration to enable a validation process is not exposed through the API. I have opened another issue #8609 to take care of this particular situation, we may evaluate how to provide such configuration while working on it.
However I think we still have to provide a failsafe mechanism to cover any other response code that is not a real success validation. We probably won't have to give details to the user, just reporting that the validation process is not enabled for that connector.
This is a...
Description
While working on #7466 I noticed that the
UI
is not treating a verificationunsupported
status properly, showing any unsupported verification asvalidated
instead:The verification endpoint returns:
But the
UI
is showing as verified correctly. I suggest to either show an error or a warning mentioning the verification is not supported for that connector.The text was updated successfully, but these errors were encountered: