Skip to content

Commit

Permalink
Fix action plugins query
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasponce authored and jshaughn committed Mar 17, 2015
1 parent 2a44ad3 commit 2d68ee0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1293,7 +1293,7 @@ public Collection<String> getActionPlugins() throws Exception {
c = ds.getConnection();
s = c.createStatement();

StringBuilder sql = new StringBuilder("SELECT actionPlugin FROM HWK_ALERTS_ACTION_PLUGIN ")
StringBuilder sql = new StringBuilder("SELECT actionPlugin FROM HWK_ALERTS_ACTION_PLUGINS ")
.append("ORDER BY actionPlugin");
log.debugf("SQL: " + sql);
rs = s.executeQuery(sql.toString());
Expand Down

0 comments on commit 2d68ee0

Please sign in to comment.