Community
Participate
Working Groups
Build Identifier: M20100211-1343 In org.eclipse.scout.rt.server.scheduler.AbstractSchedulerJob, there exist the fields: private String m_groupId; private String m_jobId; private boolean m_disposed; private boolean m_interrupted; which are potentially accessed by different threads when the job is run asynchronously. So we get visibility issues for these fields. Fix: private final String m_groupId; private final String m_jobId; private volatile boolean m_disposed; private volatile boolean m_interrupted; Reproducible: Always
Your enhancement request is valid and was applied as proposed. Thank you.
shipped with scout 3.7.1