diff options
author | Wolfy-J <[email protected]> | 2018-06-23 20:24:34 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-06-23 20:24:34 +0300 |
commit | 4e18947c529d8f23fd2c4b9d755f66268777b59a (patch) | |
tree | b21877830113af8e11b6e3e9557ba20dc88709ba | |
parent | c02a0494993f36734db18083ee878f29ed10fb10 (diff) |
better shutdown
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rwxr-xr-x | build.sh | 2 | ||||
-rw-r--r-- | server.go | 1 |
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a4eb922..7819504f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ CHANGELOG ========= +v1.0.2 (23.06.2018) +------- +- rr would provide error log from workers in realtime now +- even better service shutdown +- safer unix socket allocation +- minor CS + v1.0.2 (19.06.2018) ------- - more validations for user configs @@ -2,7 +2,7 @@ cd $(dirname "${BASH_SOURCE[0]}") OD="$(pwd)" # Pushes application version into the build information. -RR_VERSION=1.0.2 +RR_VERSION=1.0.3 # Hardcode some values to the core package LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}" @@ -64,7 +64,6 @@ func (s *Server) Start() (err error) { defer s.mu.Unlock() if s.factory, err = s.cfg.makeFactory(); err != nil { - return err } |