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
Is your feature request related to a problem? Please describe.
There are a lot of tests uses DropwizardAppExtension to init a PolarisApplication, for example:
private static final DropwizardAppExtension<PolarisApplicationConfig> EXT =
new DropwizardAppExtension<>(
PolarisApplication.class,
ResourceHelpers.resourceFilePath("polaris-server-integrationtest.yml"),
// Bind to random port to support parallelism
ConfigOverride.config("server.applicationConnectors[0].port", "0"),
ConfigOverride.config("server.adminConnectors[0].port", "0"),
// Block overlapping catalog paths:
ConfigOverride.config("featureConfiguration.ALLOW_OVERLAPPING_CATALOG_URLS", "false"));
in PolarisOverlappingCatalogTest.java.
Describe the solution you'd like
We can refactor the usaage as a util function or base class for maximize reuse.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
There are a lot of tests uses DropwizardAppExtension to init a PolarisApplication, for example:
in PolarisOverlappingCatalogTest.java.
Describe the solution you'd like
We can refactor the usaage as a util function or base class for maximize reuse.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: