diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-09-04 13:49:22 +0300 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-09-04 14:15:24 +0300 |
commit | 0ccf8ebba94447e7e7004c1a14049f679b0f28b2 (patch) | |
tree | 7bb8aa6f3d470f23ba35da6af1af9a933243f7ca /vid-ext-services-simulator/src/main/resources/META-INF/persistence.xml | |
parent | 87c87c875e0c0bba90e4ed911c8066dcfa85c517 (diff) |
Improve vid-simulator cloud-nativeness
Issue-ID: VID-608
* Integrative tests will look at `SIM_HOST` that may differ from
`VID_HOST`.
* Simulator will look at `hibernate.connection.url` property for
db-connection config
* Don't skip DB connection if schema not ready, by removing schema
validation
Change-Id: Idb4587c30dd0cbc0fe7e7362cb691a4cb425fd10
Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-ext-services-simulator/src/main/resources/META-INF/persistence.xml')
-rw-r--r-- | vid-ext-services-simulator/src/main/resources/META-INF/persistence.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-ext-services-simulator/src/main/resources/META-INF/persistence.xml b/vid-ext-services-simulator/src/main/resources/META-INF/persistence.xml index 9e4453feb..448b5b380 100644 --- a/vid-ext-services-simulator/src/main/resources/META-INF/persistence.xml +++ b/vid-ext-services-simulator/src/main/resources/META-INF/persistence.xml @@ -12,7 +12,7 @@ <property name="hibernate.show_sql" value="false" /> <property name="hibernate.format_sql" value="false" /> <property name="hibernate.dialect" value="org.hibernate.dialect.MariaDB103Dialect" /> - <property name="hibernate.hbm2ddl.auto" value="validate" /> + <property name="hibernate.hbm2ddl.auto" value="none" /> <property name="hibernate.connection.driver_class" value="org.mariadb.jdbc.Driver"/> <property name="hibernate.connection.username" value="euser"/> <property name="hibernate.connection.password" value="euser"/> |