This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new 5384ed4 JUNEAU-176 Race condition when parsing into array types.
5384ed4 is described below
commit 5384ed4ec2ab74ab9cc3544ef7c4c0bf6270d3df
Author: JamesBognar <[email protected]>
AuthorDate: Fri Jan 10 16:17:41 2020 -0500
JUNEAU-176 Race condition when parsing into array types.
---
juneau-doc/docs/ReleaseNotes/8.1.3.html | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/juneau-doc/docs/ReleaseNotes/8.1.3.html
b/juneau-doc/docs/ReleaseNotes/8.1.3.html
index 836424b..9bb4df8 100644
--- a/juneau-doc/docs/ReleaseNotes/8.1.3.html
+++ b/juneau-doc/docs/ReleaseNotes/8.1.3.html
@@ -28,9 +28,14 @@
<li>
Configurable properties such as {@link
oaj.BeanContext#BEAN_debug} can now be set globally by either
system properties or environment variables.
- <br>For <jsf>BEAN_debug</jsf> which resolves to
<js>"BEAN_debug"</js>, you can use either the system
- property <js>"BeanContext.debug.b"</js> or environment
variables <js>"BeanContext_debug_b"</js> or
- <js>"BEANCONTEXT_DEBUG_B"</js>.
+ <br>For <jsf>BEAN_debug</jsf> you can use either the system
+ property <js>"BeanContext.debug"</js> or environment variables
<js>"BEANCONTEXT_DEBUG"</js>.
+ <li>
+ Fixed an initialization time race condition that can cause
initial parse errors when concurrently parsing into
+ array types like so:
+ <p class='bpcode w800'>
+ JsonParser.<jsf>DEFAULT</jsf>.parse(input, MyBean[].<jk>class</jk>);
+ </p>
</ul>
<h5 class='topic w800'>juneau-rest-server</h5>