1. 01 Feb, 2019 1 commit
  2. 31 Jan, 2019 1 commit
    • Dominik Charousset's avatar
      Relax ini syntax for maps · 3c5d82f2
      Dominik Charousset authored
      Make '=' for defining maps and ',' for separating key-value pairs
      optional. For example, this change allows to rewrite an entry like this:
      
      ```
      logger = {
        console-verbosity='trace',
        console='colored'
      }
      ```
      
      to a slightly less noisy version such as this:
      
      ```
      logger {
        console-verbosity='trace'
        console='colored'
      }
      ```
      3c5d82f2
  3. 26 Jan, 2019 1 commit
  4. 18 Jan, 2019 3 commits
  5. 17 Jan, 2019 10 commits
  6. 16 Jan, 2019 3 commits
  7. 12 Jan, 2019 1 commit
  8. 11 Jan, 2019 2 commits
  9. 10 Jan, 2019 6 commits
  10. 09 Jan, 2019 2 commits
  11. 28 Dec, 2018 2 commits
  12. 27 Dec, 2018 4 commits
  13. 13 Dec, 2018 1 commit
    • Dominik Charousset's avatar
      Fix subtle potential bug in actor destruction · 3673feb6
      Dominik Charousset authored
      Actors that access the actor system in their cleanup code code, e.g., in
      the state destructor of stateful actors, can access an invalid context.
      Always accessing the home system instead of retrieving it from the
      context fixes this subtle bug.
      3673feb6
  14. 06 Dec, 2018 2 commits
  15. 03 Dec, 2018 1 commit