Skip to content

Commit debf233

Browse files
committed
fix: update default Prometheus service address to v1.3
1 parent bcba61b commit debf233

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

prometheus/script/github_issue_debug.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
--github-token: GitHub Personal Access Token (required)
1111
--repo: GitHub repository (format: owner/repo) (required)
1212
--issue-number: Issue number (required)
13-
--prometheus-url: Prometheus service address (default: http://localhost:9002/v1.2)
13+
--prometheus-url: Prometheus service address (default: http://localhost:9002/v1.3)
1414
--output-file: Result output file (optional, default outputs to console)
1515
--run-build: Whether to run build validation (default: False)
1616
--run-test: Whether to run test validation (default: False)
@@ -35,7 +35,7 @@
3535

3636

3737
class GitHubIssueDebugger:
38-
def __init__(self, github_token: str, prometheus_url: str = "http://localhost:9002/v1.2"):
38+
def __init__(self, github_token: str, prometheus_url: str = "http://localhost:9002/v1.3"):
3939
"""
4040
Initialize GitHub Issue Debugger
4141
@@ -253,8 +253,8 @@ def main():
253253

254254
parser.add_argument(
255255
"--prometheus-url",
256-
default="http://localhost:9002/v1.2",
257-
help="Prometheus service address (default: http://localhost:9002/v1.2)",
256+
default="http://localhost:9002/v1.3",
257+
help="Prometheus service address (default: http://localhost:9002/v1.3)",
258258
)
259259

260260
parser.add_argument(

0 commit comments

Comments
 (0)