Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 919049 Details for
Bug 971679
(6.4.0) Problem when undeploying application with already initialized interval EJB Timer
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Simple patch for logger exception
BZ-971679.patch (text/plain), 1.19 KB, created by
baranowb
on 2014-07-18 10:54:32 UTC
(
hide
)
Description:
Simple patch for logger exception
Filename:
MIME Type:
Creator:
baranowb
Created:
2014-07-18 10:54:32 UTC
Size:
1.19 KB
patch
obsolete
>diff --git a/ejb3/src/main/java/org/jboss/as/ejb3/timerservice/TimedObjectInvokerImpl.java b/ejb3/src/main/java/org/jboss/as/ejb3/timerservice/TimedObjectInvokerImpl.java >index a1710ca..7a2bf29 100644 >--- a/ejb3/src/main/java/org/jboss/as/ejb3/timerservice/TimedObjectInvokerImpl.java >+++ b/ejb3/src/main/java/org/jboss/as/ejb3/timerservice/TimedObjectInvokerImpl.java >@@ -57,6 +57,7 @@ public class TimedObjectInvokerImpl implements TimedObjectInvoker, Serializable, > private final InjectedValue<EJBComponent> ejbComponent = new InjectedValue<EJBComponent>(); > private final Module module; > private volatile boolean started = false; >+ private volatile String timedObjectId = null; > > /** > * String that uniquely identifies a deployment >@@ -103,7 +104,10 @@ public class TimedObjectInvokerImpl implements TimedObjectInvoker, Serializable, > > @Override > public String getTimedObjectId() { >- return deploymentString + "." + ejbComponent.getValue().getComponentName(); >+ if(this.timedObjectId == null){ >+ this.timedObjectId = deploymentString + "." + ejbComponent.getValue().getComponentName(); >+ } >+ return this.timedObjectId; > } > > @Override
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 971679
:
758002
|
918705
|
918706
| 919049