File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -26,4 +26,4 @@ version: 0.1.3
26
26
# incremented each time you make changes to the application. Versions are not expected to
27
27
# follow Semantic Versioning. They should reflect the version the application is using.
28
28
# It is recommended to use it with quotes.
29
- appVersion : " v0.1.3-beta.0 "
29
+ appVersion : " v0.1.3-beta.1 "
Original file line number Diff line number Diff line change 8
8
repository : ghcr.io/sysdiglabs/sysdig-mcp-server
9
9
pullPolicy : IfNotPresent
10
10
# Overrides the image tag whose default is the chart appVersion.
11
- tag : " v0.1.3-beta.0 "
11
+ tag : " v0.1.3-beta.1 "
12
12
13
13
imagePullSecrets : []
14
14
nameOverride : " "
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " sysdig-mcp-server"
3
- version = " 0.1.3-beta.0 "
3
+ version = " 0.1.3-beta.1 "
4
4
description = " Sysdig MCP Server"
5
5
readme = " README.md"
6
6
requires-python = " >=3.12"
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ def _get_public_api_url(base_url: str) -> str:
79
79
# This assumes the region is a subdomain that starts with 2 lowercase letters and ends with a digit
80
80
pattern = re .search (r"https://(?:(?P<region1>[a-z]{2}\d)\.app|app\.(?P<region2>[a-z]{2}\d))\.sysdig\.com" , base_url )
81
81
if pattern :
82
- region = pattern .group (1 ) # Extract the region
82
+ region = pattern .group ("region1" ) or pattern . group ( "region2" ) # Extract the region
83
83
return f"https://api.{ region } .sysdig.com"
84
84
else :
85
85
# Edge case for the secure API URL that is us1
You can’t perform that action at this time.
0 commit comments