Skip to content

Commit

Permalink
[task]:fix bug (#2617)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yanshuming1 authored Aug 27, 2024
1 parent 410dd5d commit a965fbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ public class PluginServiceImpl implements PluginService {
private final List<URLClassLoader> pluginClassLoaders = new ArrayList<>();

@Override
@Transactional
public void deletePlugins(Set<Long> ids) {
List<PluginMetadata> plugins = metadataDao.findAllById(ids);
// disable the plugins that need to be removed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class PluginServiceTest {

@BeforeEach
void setUp() {
pluginService = new PluginServiceImpl(metadataDao, itemDao,pluginParamDao);
pluginService = new PluginServiceImpl(metadataDao, itemDao, pluginParamDao);
}

@Test
Expand Down

0 comments on commit a965fbf

Please sign in to comment.