Skip to content

Commit

Permalink
0003296: Routing should use a dirtySqlTemplate for getReadyChannels()
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichalek committed Oct 31, 2017
1 parent 2243f61 commit 3f28e4e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -504,7 +504,7 @@ protected Set<String> getReadyChannels() {

}
final Set<String> readyChannels = new HashSet<String>();
sqlTemplate.query(sql, new ISqlRowMapper<String>() {
sqlTemplateDirty.query(sql, new ISqlRowMapper<String>() {
public String mapRow(Row row) {
readyChannels.add(row.getString("channel_id"));
return null;
Expand Down

0 comments on commit 3f28e4e

Please sign in to comment.