-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Fixes #13803 : Reduce the number of call in case of columns * Add Generic Method and Interface for Fields * Removed unnecessary comments * Make FieldInterface return List<? extends FieldInterface> for getChildren * Fix Failing Tests * - Remove Pipeline or Kill on app Disable - Add AppMarketPlaceResourceTest - Reschedule app automatically on restore * Add Debug Log in validate Change Event * Fix BotResourceTest * Api Refactor on UI
- Loading branch information
1 parent
ec6184d
commit 4a73978
Showing
25 changed files
with
535 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...service/src/main/java/org/openmetadata/service/apps/bundles/test/NoOpTestApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package org.openmetadata.service.apps.bundles.test; | ||
|
||
import lombok.extern.slf4j.Slf4j; | ||
import org.openmetadata.schema.entity.app.App; | ||
import org.openmetadata.service.apps.AbstractNativeApplication; | ||
import org.openmetadata.service.jdbi3.CollectionDAO; | ||
import org.openmetadata.service.search.SearchRepository; | ||
|
||
@Slf4j | ||
public class NoOpTestApplication extends AbstractNativeApplication { | ||
|
||
@Override | ||
public void init(App app, CollectionDAO dao, SearchRepository searchRepository) { | ||
super.init(app, dao, searchRepository); | ||
LOG.info("NoOpTestApplication is initialized"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,7 @@ public AppMarketPlaceRepository() { | |
"", | ||
""); | ||
supportsSearch = false; | ||
quoteFqn = true; | ||
} | ||
|
||
@Override | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.