Skip to content

Commit 650780f

Browse files
whummerclaude
andcommitted
fix imports for localstack_cli standalone package; re-enable CI
LocalstackCli, LocalstackCliPlugin, and pro.core.* modules were moved from localstack.cli/localstack.pro to the localstack_cli standalone package (see localstack/localstack#13704). Update imports accordingly and re-enable the push/pull_request CI triggers. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent d8b068c commit 650780f

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

.github/workflows/aws-proxy.yml

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
name: LocalStack AWS Proxy Extension Tests
22

33
on:
4-
# TODO: temporarily disabled - AWS proxy codebase needs to be fixed, to accommodate recent
5-
# changes in CLI and runtime repos, see: https://github.com/localstack/localstack/pull/13704
6-
# push:
7-
# paths:
8-
# - aws-proxy/**
9-
# branches:
10-
# - main
11-
# pull_request:
12-
# paths:
13-
# - .github/workflows/aws-proxy.yml
14-
# - aws-proxy/**
4+
push:
5+
paths:
6+
- aws-proxy/**
7+
branches:
8+
- main
9+
pull_request:
10+
paths:
11+
- .github/workflows/aws-proxy.yml
12+
- aws-proxy/**
1513
workflow_dispatch:
1614

1715
jobs:

aws-proxy/aws_proxy/client/auth_proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
LOCALHOST_HOSTNAME,
2525
)
2626
from localstack.http import Request
27-
from localstack.pro.core.bootstrap.licensingv2 import (
27+
from localstack_cli.pro.core.bootstrap.licensingv2 import (
2828
ENV_LOCALSTACK_API_KEY,
2929
ENV_LOCALSTACK_AUTH_TOKEN,
3030
)

aws-proxy/aws_proxy/client/cli.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
import click
55
import yaml
6-
from localstack.cli import LocalstackCli, LocalstackCliPlugin, console
7-
from localstack.pro.core.cli.aws import aws
8-
from localstack.pro.core.config import is_auth_token_configured
6+
from localstack_cli.cli import LocalstackCli, LocalstackCliPlugin, console
7+
from localstack_cli.pro.core.cli.aws import aws
8+
from localstack_cli.pro.core.config import is_auth_token_configured
99
from localstack.utils.files import load_file
1010

1111
from aws_proxy.shared.models import ProxyConfig, ProxyServiceConfig

0 commit comments

Comments
 (0)