You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by ju...@apache.org on 2023/02/09 07:27:00 UTC

[fineract-cn-postgresql] 11/23: Removing start on deploy

This is an automated email from the ASF dual-hosted git repository.

juhan pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract-cn-postgresql.git

commit ec31f9a69abd8eacbea7940459f44fe3859e7e2a
Author: Ebenezer Graham <eg...@alustudent.com>
AuthorDate: Sun Jul 21 22:22:05 2019 +0400

    Removing start on deploy
---
 .../fineract/cn/postgresql/config/EclipseLinkJpaConfiguration.java       | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/fineract/cn/postgresql/config/EclipseLinkJpaConfiguration.java b/src/main/java/org/apache/fineract/cn/postgresql/config/EclipseLinkJpaConfiguration.java
index 62ff39f..0ca5428 100644
--- a/src/main/java/org/apache/fineract/cn/postgresql/config/EclipseLinkJpaConfiguration.java
+++ b/src/main/java/org/apache/fineract/cn/postgresql/config/EclipseLinkJpaConfiguration.java
@@ -90,7 +90,6 @@ public class EclipseLinkJpaConfiguration extends JpaBaseConfiguration {
 		properties.put(PersistenceUnitProperties.BATCH_WRITING, BatchWriting.JDBC);
 		properties.put(PersistenceUnitProperties.LOGGING_LEVEL, SessionLog.ALL_LABEL);// Todo: Reduce log level after test
 		properties.put(PersistenceUnitProperties.LOGGING_PARAMETERS, "true");
-		properties.put(PersistenceUnitProperties.DEPLOY_ON_STARTUP, "false");
 		return properties;
 	}
 }