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 8
8
public final class StartDaemon {
9
9
private static final Logger logger = LogManager .getLogger (StartDaemon .class );
10
10
11
- public static void startDaemon () {
11
+ public static void startAikidoDaemon () {
12
12
Token token = Token .fromEnv ();
13
13
if (token == null ) {
14
14
logger .info ("Failed to start background process due to an invalid token" );
15
15
return ;
16
16
}
17
- startDaemon (token );
17
+ startAikidoDaemon (token );
18
18
}
19
19
20
- public static void startDaemon (Token token ) {
20
+ public static void startAikidoDaemon (Token token ) {
21
21
BackgroundProcess backgroundProcess = new BackgroundProcess ("main-background-process" , token );
22
22
backgroundProcess .setDaemon (true );
23
23
backgroundProcess .start ();
You can’t perform that action at this time.
0 commit comments