File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
agent_api/src/main/java/dev/aikido/agent_api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 88public final class StartDaemon {
99 private static final Logger logger = LogManager .getLogger (StartDaemon .class );
1010
11- public static void startDaemon () {
11+ public static void startAikidoDaemon () {
1212 Token token = Token .fromEnv ();
1313 if (token == null ) {
1414 logger .info ("Failed to start background process due to an invalid token" );
1515 return ;
1616 }
17- startDaemon (token );
17+ startAikidoDaemon (token );
1818 }
1919
20- public static void startDaemon (Token token ) {
20+ public static void startAikidoDaemon (Token token ) {
2121 BackgroundProcess backgroundProcess = new BackgroundProcess ("main-background-process" , token );
2222 backgroundProcess .setDaemon (true );
2323 backgroundProcess .start ();
You can’t perform that action at this time.
0 commit comments