Remove unused try block in UT (#6182)
closes https://github.com/apache/dolphinscheduler/issues/6181refactor-ui
parent
d91801e6f6
commit
cbeedba3e2
|
|
@ -31,8 +31,6 @@ import org.junit.Test;
|
|||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
/**
|
||||
* AlertPluginManager Tester.
|
||||
*/
|
||||
|
|
@ -55,13 +53,6 @@ public class AlertPluginManagerTest {
|
|||
alertPluginManagerConfig.setMavenLocalRepository(Objects.requireNonNull(PropertyUtils.getString(AlertServer.MAVEN_LOCAL_REPOSITORY)).trim());
|
||||
}
|
||||
|
||||
DolphinPluginLoader alertPluginLoader = new DolphinPluginLoader(alertPluginManagerConfig, ImmutableList.of(alertPluginManager));
|
||||
try {
|
||||
//alertPluginLoader.loadPlugins();
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("load Alert Plugin Failed !", e);
|
||||
}
|
||||
|
||||
Assert.assertNull(alertPluginManager.getAlertChannelFactoryMap().get("Email"));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue