Skip to content

Commit

Permalink
fix: add the default task setup back to the initial setup
Browse files Browse the repository at this point in the history
  • Loading branch information
0utplay committed Oct 20, 2024
1 parent 93cdaf4 commit 9f04b2f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion node/src/main/java/eu/cloudnetservice/node/Node.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
import eu.cloudnetservice.driver.network.netty.NettyUtil;
import eu.cloudnetservice.driver.network.rpc.factory.RPCFactory;
import eu.cloudnetservice.driver.network.rpc.handler.RPCHandlerRegistry;
import eu.cloudnetservice.driver.provider.ServiceTaskProvider;
import eu.cloudnetservice.driver.registry.ServiceRegistry;
import eu.cloudnetservice.driver.registry.injection.Service;
import eu.cloudnetservice.driver.template.TemplateStorage;
Expand Down Expand Up @@ -241,7 +242,8 @@ private void initializeDatabaseProvider(
@Inject
@Order(450)
private void executeSetupIfRequired(
@NonNull DefaultInstallation installation
@NonNull DefaultInstallation installation,
@NonNull ServiceTaskProvider taskProvider
) {
// execute the setup if needed
installation.executeFirstStartSetup();
Expand Down

0 comments on commit 9f04b2f

Please sign in to comment.