Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Fog catcher: Propagation task executions and no-SQL persistence #213
Conversation
|
Besides the comments I have added, there are two additional things to cover:
|
...pache/syncope/client/console/panels/GroupDirectoryPanel_fr_CA.properties
Show resolved
Hide resolved
core/logic/src/main/java/org/apache/syncope/core/logic/SyncopeLogic.java
Show resolved
Hide resolved
| append(" t WHERE "); | ||
| if (type == TaskType.SCHEDULED) { | ||
| if (SchedTask.class.isAssignableFrom(reference)) { |
ilgrosso
Sep 9, 2020
Member
This is not correct, as type == TaskType.SCHEDULE used to match only SchedTask while now this is also matching PushTask, PullTask and so on.
...rc/main/java/org/apache/syncope/core/persistence/jpa/dao/JPATaskDAO.java
Show resolved
Hide resolved
...rc/main/java/org/apache/syncope/core/persistence/jpa/dao/JPATaskDAO.java
Show resolved
Hide resolved
...g/apache/syncope/core/persistence/jpa/entity/task/AbstractSchedTask.java
Show resolved
Hide resolved
| @@ -42,6 +43,7 @@ | |||
| * The referred task. | |||
| */ | |||
| @ManyToOne(optional = false) | |||
| @JoinColumn(name = "task_id", nullable = false) | |||
andrea-patricelli
Oct 6, 2020
Author
Contributor
Yes, this is needed. Without this the tests org.apache.syncope.core.persistence.jpa.outer.TaskTest are going to fail with errors like Column "TASKEXEC.TASK_ID" not found;.

Formed in 2009, the Archive Team (not to be confused with the archive.org Archive-It Team) is a rogue archivist collective dedicated to saving copies of rapidly dying or deleted websites for the sake of history and digital heritage. The group is 100% composed of volunteers and interested parties, and has expanded into a large amount of related projects for saving online and digital history.

This is the fog-catcher implementation for "Propagation task executions and no-SQL persistence", that includes: