Trying to grok ClassCastException

I am trying out the v5 stack and punching my way through a field of errors

my logstash.conf has two grok statements, which pass the configtest:

             match => {"message"=>[
                "%{TIMESTAMP_ISO8601:timestamp} %{NOTSPACE} %{IP:client_ip}:%{NUMBER} %{IP:elb_backend_ip}:%{NUMBER} %{NUMBER} %{NUMBER} %{NUMBER} (?:%{NUMBER}|-) (?:%{NUMBER:backend_status_code:int}|-) %{NUMBER} %{NUMBER:sent_bytes:int} (?:%{QS:request}|-) (?:%{QS:userA
gent}|-) %{NOTSPACE} %{NOTSPACE}"
                ]}}

        grok {match => { "request"=> "%{WORD}\s%{URIPROTO}://%{URIHOST:host}%{URIPATH:upath}%{URIPARAM:params}\s%{GREEDYDATA}"} }

Using 5.0.0-alpha2 on Ubuntu 14.04 x64, I get the following:

Exception in thread "[main]>worker0" java.lang.ClassCastException: java.lang.String cannot be cast to java.util.List
        at com.logstash.Event.tag(Event.java:280)
        at com.logstash.ext.JrubyEventExtLibrary$RubyEvent.ruby_tag(JrubyEventExtLibrary.java:315)
        at com.logstash.ext.JrubyEventExtLibrary$RubyEvent$INVOKER$i$1$0$ruby_tag.call(JrubyEventExtLibrary$RubyEvent$INVOKER$i$1$0$ruby_tag.gen)
        at org.jruby.runtime.callsite.CachingCallSite.cacheAndCall(CachingCallSite.java:326)
        at org.jruby.runtime.callsite.CachingCallSite.call(CachingCallSite.java:170)
        at rubyjit.LogStash::Filters::Grok$$filter_428454220f2f91b7ec1ad9e019332db0555035611028566121.block_1$RUBY$__file__(/opt/logstash/vendor/bundle/jruby/1.9/gems/logstash-filter-grok-2.0.5/lib/logstash/filters/grok.rb:289)
        at rubyjit$LogStash::Filters::Grok$$filter_428454220f2f91b7ec1ad9e019332db0555035611028566121$block_1$RUBY$__file__.call(rubyjit$LogStash::Filters::Grok$$filter_428454220f2f91b7ec1ad9e019332db0555035611028566121$block_1$RUBY$__file__)
      ....

Anyone have any ideas?

Bumping. Still having the same problem.