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
150
150
151
151
## Change Log
152
152
153
+ * ` 0.1.11 ` : Fix broken imports after recent upstream CloudFormation changes
153
154
* ` 0.1.10 ` : Add ` REPLICATOR_PROXY_DOCKER_FLAGS ` option to pass custom flags to proxy Docker containers
154
155
* ` 0.1.9 ` : Enhance proxy networking and add ` REPLICATOR_LOCALSTACK_HOST ` config option
155
156
* ` 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 28
28
from aws_replicator .config import HANDLER_PATH_PROXIES , HANDLER_PATH_REPLICATE
29
29
from aws_replicator .server import ui as web_ui
30
30
from aws_replicator .server .aws_request_forwarder import AwsProxyHandler
31
- from aws_replicator .server .resource_replicator import ResourceReplicatorFormer2
32
31
from aws_replicator .shared .models import AddProxyRequest , ReplicateStateRequest , ResourceReplicator
33
32
34
33
LOG = logging .getLogger (__name__ )
@@ -111,7 +110,9 @@ def handle_replicate_request(request: ReplicateStateRequest):
111
110
112
111
113
112
def _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!
115
116
# return ResourceReplicatorInternal()
116
117
return ResourceReplicatorFormer2 ()
117
118
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = localstack-extension-aws-replicator
3
- version = 0.1
4C57
.10
3
+ version = 0.1.11
4
4
summary = LocalStack Extension: AWS replicator
5
5
description = Replicate AWS resources into your LocalStack instance
6
6
long_description = file: README.md
You can’t perform that action at this time.
0 commit comments