Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TE-11836]: Webdrivermanager and version upgrade #371

Merged
merged 3 commits into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion agent/src/main/resources/agent.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
cloud.url=${CLOUD_URL:https://local.testsigmaos.com}
local.server.url=${LOCAL_SERVER_URL:http://localhost:9090}
local.agent.register=${LOCAL_AGENT_REGISTER:true}
agent.version=3.0.0
agent.version=3.0.1
2 changes: 1 addition & 1 deletion deploy/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ services:
interval: 1s
retries: 120
testsigma_server:
image: testsigmahq/server:v3.0.0 # Replace with testsigmahq/server:v3.0.0-m1 for m1
image: testsigmahq/server:v3.0.1 # Replace with testsigmahq/server:v3.0.1-m1 for m1
container_name: testsigma_server
ports:
- "9090:9090"
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/java/com/testsigma/dto/AgentDTO.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ public class AgentDTO {
private String hostName;
private AgentOs osType;
private String osVersion;
private String currentAgentVersion = "3.0.0";
private String currentAgentVersion = "3.0.1";
}
2 changes: 1 addition & 1 deletion server/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server.port=${TESTSIGMA_SERVER_PORT:9090}
server.url=${TESTSIGMA_SERVER_URL:https://local.testsigmaos.com}
server.version=v3.0.0
server.version=v3.0.1
server.local.url=${TESTSIGMA_SERVER_LOCAL_URL:http://localhost:${server.port}}
local.agent.url=${LOCAL_AGENT_URL:http://localhost:9393/agent}
local.agent.download.tag=latest
Expand Down
Loading