Skip to content

Commit 9e5d2cb

Browse files
committed
remove old pool module
1 parent 305a26a commit 9e5d2cb

File tree

32 files changed

+144
-1493
lines changed

32 files changed

+144
-1493
lines changed

core/pom.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,6 @@
5454
<artifactId>zookeeper</artifactId>
5555
</dependency>
5656

57-
<dependency>
58-
<groupId>com.flowci</groupId>
59-
<artifactId>pool</artifactId>
60-
</dependency>
61-
6257
<dependency>
6358
<groupId>com.auth0</groupId>
6459
<artifactId>java-jwt</artifactId>

core/src/main/java/com/flowci/core/agent/domain/SshAgentHost.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class SshAgentHost extends AgentHost {
3535
@NonNull
3636
private String ip;
3737

38+
private int port = 22;
39+
3840
public SshAgentHost() {
3941
setType(Type.SSH);
4042
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
package com.flowci.core.agent.domain;
2+
3+
public abstract class Variables {
4+
5+
public static final String SERVER_URL = "FLOWCI_SERVER_URL";
6+
7+
public static final String AGENT_TOKEN = "FLOWCI_AGENT_TOKEN";
8+
9+
public static final String AGENT_LOG_LEVEL = "FLOWCI_AGENT_LOG_LEVEL";
10+
11+
public static final String AGENT_VOLUMES = "FLOWCI_AGENT_VOLUMES";
12+
13+
public static final String AGENT_WORKSPACE = "FLOWCI_AGENT_WORKSPACE";
14+
}

0 commit comments

Comments
 (0)