Update LocalDbCreationRule to respect shareDb parameter for embedded DynamoDB (#8058)
This commit is contained in:
parent
ee1fc18df0
commit
b1971384e2
|
@ -15,7 +15,7 @@ public class LocalDbCreationRule extends ExternalResource {
|
||||||
@Override
|
@Override
|
||||||
protected void before() throws Exception {
|
protected void before() throws Exception {
|
||||||
String port = "8000";
|
String port = "8000";
|
||||||
this.server = ServerRunner.createServerFromCommandLineArgs(new String[]{"-inMemory", "-port", port});
|
this.server = ServerRunner.createServerFromCommandLineArgs(new String[]{"-inMemory","-sharedDb" ,"-port", port});
|
||||||
server.start();
|
server.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue