summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWolfy-J <[email protected]>2018-06-23 20:24:34 +0300
committerWolfy-J <[email protected]>2018-06-23 20:24:34 +0300
commit4e18947c529d8f23fd2c4b9d755f66268777b59a (patch)
treeb21877830113af8e11b6e3e9557ba20dc88709ba
parentc02a0494993f36734db18083ee878f29ed10fb10 (diff)
better shutdown
-rw-r--r--CHANGELOG.md7
-rwxr-xr-xbuild.sh2
-rw-r--r--server.go1
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
diff --git a/build.sh b/build.sh
index ca5d4987..85b0b306 100755
--- a/build.sh
+++ b/build.sh
@@ -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}"
diff --git a/server.go b/server.go
index 29b51225..f8b0d64b 100644
--- a/server.go
+++ b/server.go
@@ -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
}