Edward Kaganovich created IGNITE-3951:
-----------------------------------------
Summary: IgniteSpringBean.reentrantLock() method incorrectly flips create and fair flags when calling kernel delegate.
Key: IGNITE-3951
URL:
https://issues.apache.org/jira/browse/IGNITE-3951 Project: Ignite
Issue Type: Bug
Components: data structures
Affects Versions: 1.7
Reporter: Edward Kaganovich
{code:title=IgniteSpringBean.java|borderStyle=solid}{code}
@Nullable @Override public IgniteLock reentrantLock(String name,
boolean failoverSafe,{color:green}boolean fair, boolean create {color}) {
checkIgnite();
return g.reentrantLock(name, failoverSafe, {color:red}create, fair{color});
}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)