This is an automated email from the ASF dual-hosted git repository.
adamsaghy pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git
The following commit(s) were added to refs/heads/develop by this push:
new 84fbb9d688 FINERACT-2421: fix breaking commmand persistence test
84fbb9d688 is described below
commit 84fbb9d688cb11a4f124c9b394e56c2eb0f93c6d
Author: Aleks <[email protected]>
AuthorDate: Fri Feb 20 10:53:30 2026 +0100
FINERACT-2421: fix breaking commmand persistence test
---
.../fineract/command/starter/CommandPersistenceConfiguration.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/fineract-command/src/main/java/org/apache/fineract/command/starter/CommandPersistenceConfiguration.java
b/fineract-command/src/main/java/org/apache/fineract/command/starter/CommandPersistenceConfiguration.java
index 110908f75a..535623c912 100644
---
a/fineract-command/src/main/java/org/apache/fineract/command/starter/CommandPersistenceConfiguration.java
+++
b/fineract-command/src/main/java/org/apache/fineract/command/starter/CommandPersistenceConfiguration.java
@@ -28,7 +28,7 @@ import
org.springframework.data.jdbc.core.convert.JdbcCustomConversions;
import org.springframework.data.jdbc.repository.config.EnableJdbcRepositories;
@Configuration
-@EnableJdbcRepositories(basePackages = { "org.apache.fineract.**.domain",
"org.apache.fineract.**.persistence" })
+@EnableJdbcRepositories(basePackages = { "org.apache.fineract.**.domain" })
@ComponentScan("org.apache.fineract.command.persistence")
class CommandPersistenceConfiguration {