ptgoetz / storm-jms

Storm JMS Integration

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JMSSpout open() is throwing classCastException

mikereynolds opened this issue · comments

Getting a class cast on
Integer topologyTimeout = (Integer)conf.get("topology.message.timeout.secs");
in JmsSpout.java

This should be similar to;
Integer topologyTimeout = Integer.parseInt(String.valueOf(conf.get("topology.message.timeout.secs")));

We have the same issue...

I found the same issue ...