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
URIUtils.SCHEME_CHECKER.check() loads the error message bundle (which spawns a Thread to get the message source for the locale) even if the check would succeed. If this was a Future then it could be lazily loaded only if one of the checks failed.
This was discovered when upgrading json-schema-validator from v1.6.2 to v2.2.10, since the test harness we used for "small" tests inhibits thread creation, and meant that validator tests now must be promoted to "medium".
The text was updated successfully, but these errors were encountered:
URIUtils.SCHEME_CHECKER.check()
loads the error message bundle (which spawns a Thread to get the message source for the locale) even if the check would succeed. If this was aFuture
then it could be lazily loaded only if one of the checks failed.This was discovered when upgrading json-schema-validator from v1.6.2 to v2.2.10, since the test harness we used for "small" tests inhibits thread creation, and meant that validator tests now must be promoted to "medium".
The text was updated successfully, but these errors were encountered: