Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
X
xnat-web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dhcp
xnat-web
Commits
18bbb0f7
Commit
18bbb0f7
authored
8 years ago
by
Mike Hodge
Browse files
Options
Downloads
Patches
Plain Diff
Fix automation event constraint violation exception at startup
parent
73e9a17e
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/nrg/xnat/event/listeners/AutomationEventScriptHandler.java
+2
-1
2 additions, 1 deletion
...rg/xnat/event/listeners/AutomationEventScriptHandler.java
with
2 additions
and
1 deletion
src/main/java/org/nrg/xnat/event/listeners/AutomationEventScriptHandler.java
+
2
−
1
View file @
18bbb0f7
...
@@ -177,7 +177,8 @@ public class AutomationEventScriptHandler implements Consumer<Event<AutomationEv
...
@@ -177,7 +177,8 @@ public class AutomationEventScriptHandler implements Consumer<Event<AutomationEv
*
*
* @param event the event
* @param event the event
*/
*/
private
void
updateAutomationTables
(
Event
<
AutomationEventImplementerI
>
event
)
{
// Made this method synchronized to avoid some constraint violation exceptions that were occasionally being thrown.
private
synchronized
void
updateAutomationTables
(
Event
<
AutomationEventImplementerI
>
event
)
{
final
AutomationEventImplementerI
eventData
=
event
.
getData
();
final
AutomationEventImplementerI
eventData
=
event
.
getData
();
if
(
eventData
.
getEventId
()
==
null
||
eventData
.
getClass
()
==
null
)
{
if
(
eventData
.
getEventId
()
==
null
||
eventData
.
getClass
()
==
null
)
{
return
;
return
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment