mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-13 17:32:53 +00:00
Fix Condition for deleted App (#17096)
This commit is contained in:
parent
7c80c07eab
commit
75fcb03041
@ -63,7 +63,7 @@ public class AbstractNativeApplication implements NativeApplication {
|
|||||||
@Override
|
@Override
|
||||||
public void install() {
|
public void install() {
|
||||||
// If the app does not have any Schedule Return without scheduling
|
// If the app does not have any Schedule Return without scheduling
|
||||||
if (Boolean.FALSE.equals(app.getDeleted())
|
if (Boolean.TRUE.equals(app.getDeleted())
|
||||||
|| (app.getAppSchedule() != null
|
|| (app.getAppSchedule() != null
|
||||||
&& app.getAppSchedule().getScheduleTimeline().equals(ScheduleTimeline.NONE))) {
|
&& app.getAppSchedule().getScheduleTimeline().equals(ScheduleTimeline.NONE))) {
|
||||||
return;
|
return;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user