File tree 4 files changed +16
-1
lines changed
src/main/java/com/fasterxml/jackson/core/util 4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,11 @@ com.fasterxml.jackson.core.*;version=${project.version}
83
83
<excludes >
84
84
<exclude >**/failing/**/*.java</exclude >
85
85
</excludes >
86
+ <!-- 13-Apr-2018, tatu: for debugging [core#400]
87
+ <systemPropertyVariables>
88
+ <com.fasterxml.jackson.core.util.BufferRecyclers.trackReusableBuffers>true</com.fasterxml.jackson.core.util.BufferRecyclers.trackReusableBuffers>
89
+ </systemPropertyVariables>
90
+ -->
86
91
</configuration >
87
92
</plugin >
88
93
<plugin > <!-- default settings are fine, just need to enable here -->
Original file line number Diff line number Diff line change @@ -145,3 +145,8 @@ Rafal Foltynski (rfoltyns@github)
145
145
(2.9.0)
146
146
* Contributed#208: Make use of `_matchCount` in `FilteringParserDelegate`
147
147
(2.9.0)
148
+
149
+ Jeroen Borgers (jborgers@github)
150
+ * Reported, contributed impl for #400: Add mechanism for forcing `BufferRecycler` released
151
+ (to call on shutdown)
152
+ (2.9.6)
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ JSON library.
14
14
= == Releases == =
15
15
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
16
16
17
+ 2.9 .6 (not yet released )
18
+
19
+ #400 : Add mechanism for forcing `BufferRecycler ` released (to call on shutdown )
20
+ (contributed by Jeroen B )
21
+
17
22
2.9 .5 (26 - Mar - 2018 )
18
23
19
24
No changes since 2.9 .4
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public class BufferRecyclers
36
36
*/
37
37
private final static ThreadLocalBufferManager _bufferRecyclerTracker ;
38
38
static {
39
- _bufferRecyclerTracker = "true" .equals (System .getProperty ("com.fasterxml.jackson.core.use_releasable_thread_local_buffers" ))
39
+ _bufferRecyclerTracker = "true" .equals (System .getProperty (SYSTEM_PROPERTY_TRACK_REUSABLE_BUFFERS ))
40
40
? ThreadLocalBufferManager .instance ()
41
41
: null ;
42
42
}
You can’t perform that action at this time.
0 commit comments