Issue Tracking
Loading

Issue Tracking

Akka is using Assembla as its issue tracking system.

Creating tickets

In order to create tickets you need to do the following:

Register here then log in

Then you also need to become a "Watcher" of the Akka space.

Link to create a new ticket

Thanks a lot for reporting bugs and suggesting features.

Failing test

Please submit a failing test on the following format:

  1. import org.scalatest.WordSpec
  2. import org.scalatest.matchers.MustMatchers
  3.  
  4. class Ticket001Spec extends WordSpec with MustMatchers {
  5.  
  6. "An XXX" must {
  7. "do YYY" in {
  8. 1 must be (1)
  9. }
  10. }
  11. }