Skip to content

Commit 80ed492

Browse files
author
Kowser
committed
Replace port from 6767 to 8080
1 parent 05b0f56 commit 80ed492

233 files changed

Lines changed: 244 additions & 244 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

e2e/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
# ── Configuration from env (set by orchestrator) ────────────────────────
1010

11-
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
11+
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
1212
BASE_URL = SERVER_URL.rstrip("/").replace("/api", "")
1313
CLI_PATH = os.environ.get("AGENTSPAN_CLI_PATH", "agentspan")
1414
MCP_TESTKIT_URL = os.environ.get("MCP_TESTKIT_URL", "http://localhost:3001")

e2e/test_suite10_code_execution.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def _jupyter_available() -> bool:
7474

7575
def _get_workflow(execution_id):
7676
"""Fetch workflow execution from server API."""
77-
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
77+
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
7878
base_url = base.rstrip("/").replace("/api", "")
7979
resp = requests.get(f"{base_url}/api/workflow/{execution_id}", timeout=10)
8080
resp.raise_for_status()

e2e/test_suite11_langgraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
pytestmark = [pytest.mark.e2e]
3535

3636
TIMEOUT = 120
37-
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
37+
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
3838
BASE_URL = SERVER_URL.rstrip("/").replace("/api", "")
3939

4040

e2e/test_suite12_termination_gates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def echo_tool(text: str) -> str:
5050

5151
def _get_workflow(execution_id):
5252
"""Fetch workflow execution from server API."""
53-
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
53+
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
5454
base_url = base.rstrip("/").replace("/api", "")
5555
resp = requests.get(f"{base_url}/api/workflow/{execution_id}", timeout=10)
5656
resp.raise_for_status()

e2e/test_suite13_callbacks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def on_tool_end(self, **kwargs):
100100

101101
def _get_workflow(execution_id):
102102
"""Fetch workflow execution from server API."""
103-
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
103+
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
104104
base_url = base.rstrip("/").replace("/api", "")
105105
resp = requests.get(f"{base_url}/api/workflow/{execution_id}", timeout=10)
106106
resp.raise_for_status()

e2e/test_suite14_stateful_domain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
]
3737

3838
TIMEOUT = 300 # 5 min per run
39-
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
39+
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
4040
BASE_URL = SERVER_URL.rstrip("/").replace("/api", "")
4141

4242

e2e/test_suite20_plan_execute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535

3636
pytestmark = pytest.mark.e2e
3737

38-
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
38+
SERVER_URL = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
3939
BASE_URL = SERVER_URL.rstrip("/").replace("/api", "")
4040
MODEL = os.environ.get("AGENTSPAN_LLM_MODEL", "openai/gpt-4o-mini")
4141

e2e/test_suite24_agent_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
pytestmark = [pytest.mark.e2e]
3535

3636
MODEL = os.environ.get("AGENTSPAN_LLM_MODEL", "openai/gpt-4o-mini")
37-
_API = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api").rstrip("/")
37+
_API = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api").rstrip("/")
3838

3939

4040
def _scheduler_available() -> bool:

e2e/test_suite2_tool_calling.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def _make_agent(model: str) -> Agent:
9494

9595
def _get_workflow(execution_id: str) -> dict:
9696
"""Fetch workflow from server API."""
97-
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
97+
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
9898
base_url = base.rstrip("/").replace("/api", "")
9999
resp = requests.get(f"{base_url}/api/workflow/{execution_id}", timeout=10)
100100
resp.raise_for_status()
@@ -199,7 +199,7 @@ def _credential_audit(agent: Agent) -> str:
199199
Returns a human-readable report showing which credentials are required
200200
and which are missing from the server.
201201
"""
202-
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
202+
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
203203
base_url = base.rstrip("/").replace("/api", "")
204204

205205
# Fetch stored credentials from server

e2e/test_suite3_cli_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ def _run_diagnostic(result) -> str:
166166

167167
def _get_workflow(execution_id: str) -> dict:
168168
"""Fetch workflow from server API."""
169-
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:6767/api")
169+
base = os.environ.get("AGENTSPAN_SERVER_URL", "http://localhost:8080/api")
170170
base_url = base.rstrip("/").replace("/api", "")
171171
resp = requests.get(f"{base_url}/api/workflow/{execution_id}", timeout=10)
172172
resp.raise_for_status()

0 commit comments

Comments
 (0)