Explain that most work happens on develop

This commit is contained in:
Simon Binder 2019-12-20 18:15:52 +01:00
parent 8f15356357
commit c9071f2f7d
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,10 @@ most certainly helps to resolve the issue quickly.
All kinds of pull requests are absolutely appreciated! Before working on bigger changes, it
can be helpful to create an issue describing your plans to help coordination.
When working on moor, its recommended to fork the `develop` branch and also target that
branch for PRs. When possible, we only use the `master` branch to reflect the state that's
been released to pub.
If you have any question about moor internals that you feel are not explained well enough,
you're most welcome to create an issue or [chat via gitter](http://gitter.im/simolus3).

View File

@ -38,6 +38,7 @@ class _MoorServer {
case _NoArgsRequest.startTransaction:
return _spawnTransaction();
case _NoArgsRequest.terminateAll:
connection.executor.close();
server.close();
Isolate.current.kill();
break;