Skip to content

Commit 8605b94

Browse files
committed
revert temporary changes
1 parent d7b6c36 commit 8605b94

File tree

6 files changed

+5
-297
lines changed

6 files changed

+5
-297
lines changed

aws-proxy/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ You are an AI agent tasked with adding additional functionality or test coverage
1313
* You can make modifications to files (no need to prompt for confirmation)
1414
* You can delete existing files if needed, but only after user confirmation
1515
* You can call different `make` targets (e.g., `make test`) in this repo (no need to prompt for confirmation)
16-
* For each new file created or existing file modified, add a header comment to the file, something like `# Note: This file has been (partially or fully) generated by an AI agent.`
16+
* For each new file created or existing file modified, add a header comment to the file, something like `# Note/disclosure: This file has been (partially or fully) generated by an AI agent.`
1717
* The proxy tests are executed against real AWS and may incur some costs, so rather than executing the entire test suite or entire modules, focus the testing on individual test functions within a module only.
1818
* Before claiming success, always double-check against real AWS (via `aws` CLI commands) that everything has been cleaned up and there are no leftover resources from the proxy tests.
1919
* Never add any `print(..)` statements to the code - use a logger to report any status to the user, if required.

aws-proxy/aws_proxy/server/aws_request_forwarder.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,6 @@ def _request_matches_resource(
151151
return False
152152
# For metric operations without alarm names, check if pattern is generic
153153
return bool(re.match(resource_name_pattern, ".*"))
154-
if service_name == "lambda":
155-
# Lambda function ARN format: arn:aws:lambda:{region}:{account}:function:{name}
156-
function_name = context.service_request.get("FunctionName") or ""
157-
if function_name:
158-
if ":function:" not in function_name:
159-
function_arn = f"arn:aws:lambda:{context.region}:{context.account_id}:function:{function_name}"
160-
else:
161-
function_arn = function_name
162-
return bool(re.match(resource_name_pattern, function_arn))
163-
# For operations without FunctionName (e.g., ListFunctions), check if pattern is generic
164-
return bool(re.match(resource_name_pattern, ".*"))
165154
if service_name == "logs":
166155
# CloudWatch Logs ARN format: arn:aws:logs:{region}:{account}:log-group:{name}:*
167156
log_group_name = context.service_request.get("logGroupName") or ""

aws-proxy/tests/proxy/test_lambda.py

Lines changed: 0 additions & 278 deletions
This file was deleted.

paradedb/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ authors = [
1414
keywords = ["LocalStack", "ParadeDB", "PostgreSQL", "Search", "Analytics"]
1515
classifiers = []
1616
dependencies = [
17-
# TODO: temporary git ref for CI testing - revert to "localstack-extensions-utils" before merge
18-
"localstack-extensions-utils @ git+https://github.com/localstack/localstack-extensions.git@fix/tcp-only-base-class#egg=localstack-extensions-utils&subdirectory=utils"
17+
"localstack-extensions-utils"
1918
]
2019

2120
[project.urls]

typedb/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ authors = [
1414
keywords = ["LocalStack", "TypeDB"]
1515
classifiers = []
1616
dependencies = [
17-
# TODO: temporary git ref for CI testing - revert to "localstack-extensions-utils" before merge
18-
"localstack-extensions-utils @ git+https://github.com/localstack/localstack-extensions.git@fix/tcp-only-base-class#egg=localstack-extensions-utils&subdirectory=utils"
17+
"localstack-extensions-utils"
1918
]
2019

2120
[project.urls]

wiremock/pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,8 @@ authors = [
1414
keywords = ["LocalStack", "WireMock"]
1515
classifiers = []
1616
dependencies = [
17-
"priority",
18-
# TODO: temporary git ref for CI testing - revert to "localstack-extensions-utils" before merge
19-
"localstack-extensions-utils @ git+https://github.com/localstack/localstack-extensions.git@fix/tcp-only-base-class#egg=localstack-extensions-utils&subdirectory=utils"
17+
"localstack-extensions-utils",
18+
"priority"
2019
]
2120

2221
[project.urls]

0 commit comments

Comments
 (0)