-
Notifications
You must be signed in to change notification settings - Fork 2.1k
fix(migration): v200 thread_entity guard, PostgreSQL jsonb cast, self-loop cycle detection #27756
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
fc2c043
2e70935
f5207b0
e5592bc
e656fdd
81129e0
a6963e1
19f6b7a
63352ab
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1228,7 +1228,16 @@ protected void setDefaultStatus(T entity, boolean update) { | |
| public final void initSeedDataFromResources() throws IOException { | ||
| List<T> entities = getEntitiesFromSeedData(); | ||
| for (T entity : entities) { | ||
| initializeEntity(entity); | ||
| try { | ||
| initializeEntity(entity); | ||
| } catch (Exception e) { | ||
| LOG.warn( | ||
| "Failed to initialize {} '{}': {}", | ||
| entityType, | ||
| entity.getFullyQualifiedName(), | ||
| e.getMessage(), | ||
| e); | ||
| } | ||
| } | ||
|
Comment on lines
1228
to
1241
|
||
| } | ||
|
|
||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.