File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,7 @@ localstack extensions install "git+https://github.com/localstack/localstack-exte
150150
151151## Change Log
152152
153+ * ` 0.1.11 ` : Fix broken imports after recent upstream CloudFormation changes
153154* ` 0.1.10 ` : Add ` REPLICATOR_PROXY_DOCKER_FLAGS ` option to pass custom flags to proxy Docker containers
154155* ` 0.1.9 ` : Enhance proxy networking and add ` REPLICATOR_LOCALSTACK_HOST ` config option
155156* ` 0.1.8 ` : Add ` REPLICATOR_CLEANUP_PROXY_CONTAINERS ` option to skip removing proxy containers for debugging
Original file line number Diff line number Diff line change 2828from aws_replicator .config import HANDLER_PATH_PROXIES , HANDLER_PATH_REPLICATE
2929from aws_replicator .server import ui as web_ui
3030from aws_replicator .server .aws_request_forwarder import AwsProxyHandler
31- from aws_replicator .server .resource_replicator import ResourceReplicatorFormer2
3231from aws_replicator .shared .models import AddProxyRequest , ReplicateStateRequest , ResourceReplicator
3332
3433LOG = logging .getLogger (__name__ )
@@ -111,7 +110,9 @@ def handle_replicate_request(request: ReplicateStateRequest):
111110
112111
113112def _get_replicator () -> ResourceReplicator :
114- # TODO deprecated
113+ from aws_replicator .server .resource_replicator import ResourceReplicatorFormer2
114+
115+ # TODO deprecated - fix the implementation of the replicator/copy logic!
115116 # return ResourceReplicatorInternal()
116117 return ResourceReplicatorFormer2 ()
117118
Original file line number Diff line number Diff line change 11[metadata]
22name = localstack-extension-aws-replicator
3- version = 0.1.10
3+ version = 0.1.11
44summary = LocalStack Extension: AWS replicator
55description = Replicate AWS resources into your LocalStack instance
66long_description = file: README.md
You can’t perform that action at this time.
0 commit comments