Skip to content

Commit ef57496

Browse files
committed
Bugfix: OutOfMemory issue cause by Rhino (3rd party library)
Transitive library org.mozilla.rhino uses version 1.7.7.2 (used originally by reacability using unified-agent) has possible OutOfMemory due to infinite loop on parsing Issue Objects are only thread-safe when feature is enabled. (https://github.com/mozilla/rhino/blob/master/RELEASE-NOTES.md#rhino-178) Using override to use version 1.7.8 fixes this issue. Resolves: SCA-4120
1 parent 49b956d commit ef57496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wss-agent-hash-calculator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<dependency>
5555
<groupId>org.mozilla</groupId>
5656
<artifactId>rhino</artifactId>
57-
<version>1.7.7.2</version>
57+
<version>1.7.8</version>
5858
</dependency>
5959

6060
<!-- Logging -->

0 commit comments

Comments
 (0)