xuwei-k on 0.11.x
xuwei-k on 0.11.x
Update specs2-core to 4.16.1 in… (compare)
xuwei-k on main
xuwei-k on main
Update specs2-core to 4.16.1 in… (compare)
unfiltered-app[bot] on 0.11.x
Update specs2-core to 4.16.1 in… (compare)
unfiltered-app[bot] on main
Update specs2-core to 4.16.1 in… (compare)
xuwei-k on main
xuwei-k on main
Update jetty-webapp to 11.0.11 … (compare)
xuwei-k on 0.11.x
xuwei-k on 0.11.x
Update jetty-webapp to 10.0.11 … (compare)
xuwei-k on 0.10.x
Update jetty-webapp to 9.4.48.v… (compare)
xuwei-k on 0.10.x
remote: error: GH006: Protected branch update failed for refs/heads/0.9.x.
remote: error: Required status check "continuous-integration/travis-ci" is expected.
To github.com:unfiltered/unfiltered.git
! [remote rejected] 0.9.x -> 0.9.x (protected branch hook declined)
error: failed to push some refs to 'git@github.com:unfiltered/unfiltered.git'
transport-native-epoll/src/main/java/io/netty/channel/epoll/EpollChannelOption.java
27: public static final ChannelOption<Boolean> SO_REUSEPORT = valueOf(EpollChannelOption.class, "SO_REUSEPORT")
def intent = {
case req @ POST(Path(Seg("credit" :: "charge" :: Nil))) => { ...}
object Seg {
def unapply(path: String): Option[List[String]] = path.split("/").toList match {
case "" :: rest => Some(rest) // skip a leading slash
case all => Some(all)
}
}
How is it possible to send List[String] to Seg ?