Skip to content

Commit f0d2cb9

Browse files
Wentao Changguusdk
authored andcommitted
Cluster node page cannot open
1 parent 185d1d6 commit f0d2cb9

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

changelog.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,10 @@
4343
<h1>
4444
Hazelcast Clustering Plugin Changelog
4545
</h1>
46+
<p><b>5.5.0 Release 2</b> -- tbd</p>
47+
<ul>
48+
<li>[<a href='https://github.com/igniterealtime/openfire-hazelcast-plugin/issues/117'>Issue #117</a>] - Fix cluster node page cannot open</li>
49+
</ul>
4650

4751
<p><b>5.5.0 Release 1</b> -- June 12, 2025</p>
4852
<strong>NOTE: This version of the plugin requires Openfire 5.0.0 or higher</strong>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
<artifactId>maven-assembly-plugin</artifactId>
5454
</plugin>
5555
<plugin>
56-
<groupId>org.eclipse.jetty</groupId>
57-
<artifactId>jetty-jspc-maven-plugin</artifactId>
56+
<groupId>org.eclipse.jetty.ee8</groupId>
57+
<artifactId>jetty-ee8-jspc-maven-plugin</artifactId>
5858
</plugin>
5959
</plugins>
6060
</build>

src/web/system-clustering-node.jsp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
org.jivesoftware.openfire.cluster.NodeID,
77
org.jivesoftware.openfire.cluster.ClusterNodeInfo"
88
%>
9-
<%@ page import="org.jivesoftware.util.Base64" %>
109
<%@ page import="org.jivesoftware.util.JiveGlobals" %>
1110
<%@ page import="org.jivesoftware.util.LocaleUtils" %>
1211
<%@ page import="org.jivesoftware.util.ParamUtils" %>
@@ -94,7 +93,7 @@
9493
if (uid == null) {
9594
byteArray = members.isEmpty() ? new byte[] {0} : members.get(0).getNodeID().toByteArray();
9695
} else {
97-
byteArray = Base64.decode(uid, Base64.URL_SAFE);
96+
byteArray = Base64.getDecoder().decode(uid);
9897
}
9998
10099
// Get the specific member requested

0 commit comments

Comments
 (0)