Skip to content
Snippets Groups Projects
Commit e162d71b authored by Piotr Gawron's avatar Piotr Gawron
Browse files

Merge branch...

Merge branch '1986-start-of-minerva-service-should-not-be-blocked-by-the-jobs-in-queue' into 'master'

Resolve "start of minerva service should not be blocked by the jobs in queue"

Closes #1986

See merge request !1680
parents fb2824b3 ed9fd7bb
No related branches found
No related tags found
2 merge requests!1700Resolve "introduce new frontend to the jar file build process",!1680Resolve "start of minerva service should not be blocked by the jobs in queue"
Pipeline #85819 passed
...@@ -13,6 +13,8 @@ minerva (17.0.0~beta.3) unstable; urgency=medium ...@@ -13,6 +13,8 @@ minerva (17.0.0~beta.3) unstable; urgency=medium
* Bug fix: Sign up is visible everywhere in minerva where user can login. * Bug fix: Sign up is visible everywhere in minerva where user can login.
When signup is visible request an account is invisible (#1635) When signup is visible request an account is invisible (#1635)
* Bug fix: (regression) cache refresh did not work in production (#1989) * Bug fix: (regression) cache refresh did not work in production (#1989)
* Bug fix: (regression) pending create project jobs were blocking start of
minerva application (#1986)
* Bug fix: (regression) uploading project produces a lot of errors like: * Bug fix: (regression) uploading project produces a lot of errors like:
Problem with checking property: Problem with checking property:
private final byte java.lang.String.coder (#1983) private final byte java.lang.String.coder (#1983)
...@@ -21,7 +23,7 @@ minerva (17.0.0~beta.3) unstable; urgency=medium ...@@ -21,7 +23,7 @@ minerva (17.0.0~beta.3) unstable; urgency=medium
add overlay button (#1990) add overlay button (#1990)
* Bug fix: invalid columns were marked as sortable in user list panel (#1993) * Bug fix: invalid columns were marked as sortable in user list panel (#1993)
-- Piotr Gawron <piotr.gawron@uni.lu> Tue, 13 Feb 2024 11:00:00 +0200 -- Piotr Gawron <piotr.gawron@uni.lu> Thu, 15 Feb 2024 15:00:00 +0200
minerva (17.0.0~beta.2) unstable; urgency=medium minerva (17.0.0~beta.2) unstable; urgency=medium
* Bug fix (regression): minerva was very slow in production due to cache * Bug fix (regression): minerva was very slow in production due to cache
......
...@@ -168,7 +168,8 @@ public class StartupBean { ...@@ -168,7 +168,8 @@ public class StartupBean {
for (Project project : projectService.getAllProjects()) { for (Project project : projectService.getAllProjects()) {
if (!ProjectStatus.DONE.equals(project.getStatus()) if (!ProjectStatus.DONE.equals(project.getStatus())
&& !ProjectStatus.ARCHIVED.equals(project.getStatus()) && !ProjectStatus.ARCHIVED.equals(project.getStatus())
&& !ProjectStatus.FAIL.equals(project.getStatus())) { && !ProjectStatus.FAIL.equals(project.getStatus())
&& !ProjectStatus.UNKNOWN.equals(project.getStatus())) {
project = projectService.getProjectByProjectId(project.getProjectId(), true); project = projectService.getProjectByProjectId(project.getProjectId(), true);
ProjectLogEntry entry = new ProjectLogEntry(); ProjectLogEntry entry = new ProjectLogEntry();
entry.setSeverity("ERROR"); entry.setSeverity("ERROR");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment