Skip to content

Commit

Permalink
Fixed error on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
QuickGlare committed Feb 28, 2021
1 parent a39e18e commit 46f1c3f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>io.alerium.chocolate</groupId>
<artifactId>parent</artifactId>
<packaging>pom</packaging>
<version>1.1.1-SNAPSHOT</version>
<version>1.1.2-SNAPSHOT</version>

<modules>
<module>velocity</module>
Expand Down
2 changes: 1 addition & 1 deletion spigot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>parent</artifactId>
<groupId>io.alerium.chocolate</groupId>
<version>1.1.1-SNAPSHOT</version>
<version>1.1.2-SNAPSHOT</version>
</parent>

<artifactId>spigot</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>io.alerium.chocolate</groupId>
<artifactId>parent</artifactId>
<version>1.1.1-SNAPSHOT</version>
<version>1.1.2-SNAPSHOT</version>
</parent>

<artifactId>velocity</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void enable() {

psListener = new PubSubListener(plugin);
try (Jedis jedis = getConnection()) {
jedis.subscribe(psListener);
jedis.subscribe(psListener, "chocolate");
}

proxyName = plugin.getConfig().getObject().get("proxyName").getAsString();
Expand Down

1 comment on commit 46f1c3f

@callumxzr
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This update causes the server to become unresponsive after enabling the plugin.

Please sign in to comment.