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
The following configurations do not work through client properties:
In case of setting apicurio.auth.username, apicurio.registry.url is taken into username and vice versa. Correction:
In the AbstractSchemaResolver class on line 82, the url and username parameters are exchanged
apicurio.auth.client.secret is not considered. The value from apicurio.auth.client.id is set. Correction:
In the DefaultSchemaResolverConfig class, correct the method
public String getAuthClientSecret () {
return this.getString (AUTH_CLIENT_ID);
}
Well thank you. Tibor
The text was updated successfully, but these errors were encountered:
The following configurations do not work through client properties:
In case of setting apicurio.auth.username, apicurio.registry.url is taken into username and vice versa. Correction:
In the AbstractSchemaResolver class on line 82, the url and username parameters are exchanged
apicurio.auth.client.secret is not considered. The value from apicurio.auth.client.id is set. Correction:
In the DefaultSchemaResolverConfig class, correct the method
public String getAuthClientSecret () {
return this.getString (AUTH_CLIENT_ID);
}
Well thank you. Tibor
The text was updated successfully, but these errors were encountered: