Commit Graph

1250 Commits

Author SHA1 Message Date
Ivan Markin
c3455e7874 Use GetDefaultOptions from go-nats instead of deprecated DefaultOptions 2017-07-31 20:20:36 +00:00
Ivan Kozlovic
3ee7f3b3b1 Merge pull request #551 from ingosus/zombie_sub
[FIXED] Subscriptions not closed in the cluster when using auto unsubscribe
2017-07-21 08:28:43 -06:00
ingosus
5145723164 Fix subscriptions zombie at autounsubscribe on cluster 2017-07-21 12:42:41 +03:00
Ivan Kozlovic
4ccbd2e3ba Merge pull request #548 from nats-io/new_release
Release 1.0.2
v1.0.2
2017-07-19 13:33:25 -06:00
Ivan Kozlovic
102b9ed3d4 Release 1.0.2
Essentially patch for Windows Docker Images.
2017-07-19 13:21:27 -06:00
Ivan Kozlovic
75ad27c073 Merge pull request #545 from nats-io/improve_config_reload_coverage
Improved Config Reload test coverage
2017-07-19 12:15:29 -06:00
Ivan Kozlovic
9ff62e21a9 Fix typos 2017-07-19 11:59:05 -06:00
Ivan Kozlovic
1fa136b21a Improved Config Reload test coverage
- Move the kill of a server in a cluster test to ensure that
  list of routes to remove is not empty.
- Change write_deadline reload value to 3s to make it different
  from default value
- Add test for option that does not support hot-swapping
2017-07-19 11:59:05 -06:00
Ivan Kozlovic
c1e295957d Merge pull request #547 from nats-io/fix_duplicate_route_handling
[FIXED] Handling of duplicate routes
2017-07-19 11:58:10 -06:00
Ivan Kozlovic
2befd973cc Fixed DATA RACE and ensure route is not created/accepted on shutdown
- Created a setter for the closed flag.
- Check if route is closed under lock and set a boolean if so,
  so we don't check c.route outside of c's mutex.
- Ensure that we do not create a route on shutdown, which would
  leave a connection hanging (was seen in some config reload tests).
2017-07-19 10:42:18 -06:00
Ivan Kozlovic
69891d37ac Fix import ordering 2017-07-19 09:02:25 -06:00
Ivan Kozlovic
d26bef4edf Merge pull request #544 from nats-io/fix_win_docker
[FIXED] Windows Docker Images
2017-07-18 19:18:00 -06:00
Ivan Kozlovic
9cddf0fcdf [FIXED] Windows Docker Image
The use of the `svc` API prevented the NATS Server to run as
a container on both nanoserver and windowsservercore Docker images.
An attempt was made to replace svc.Debug with normal server.Start()
if detected to be interactive, however, that did not work. The
fact of detecting if interactive or not already requires connecting
to the service controller apparently.
This change looks up for an environment variable (NATS_DOCKERIZED)
and if set to "1", will not make use of the `svc` package.
This environment variable will be set in the Docker image (in
nats-docker/windows/nanoserver/Dockerfile and windowsservercore/Dockerfile).

Resolves #543
2017-07-18 19:00:17 -06:00
Ivan Kozlovic
0e2882d741 [FIXED] Handling of duplicate routes
When A connects to B and B connects to A (either based on static
configuration - explicit routes, or because of auto-discovery -
implicit routes), it is possible that each server initially
registers the route from the opposite TCP connection. It will
then result in each server dropping the connection.

We were previously setting a retry flag in the first accepted route
based on the name of servers, which means that regardless of
duplicate detection, the server with the "smaller" server name would
try to reconnect when the route connection was closed. For instance,
suppose that server B connects to server A, when B disconnects, A
would try to reconnect once to B. This became problematic in the
case of configuration reload, because removing the route from B to
A would still result in a route created from A to B.

Also, when a route attempts a reconnect, a random delay is added
to avoid repeated failure cycles that may occur in case where
A connects to B and B to A.
2017-07-18 18:25:56 -06:00
Ivan Kozlovic
9a44c20890 Merge pull request #541 from nats-io/prepare_for_new_release
Prepare for next release
v1.0.0
2017-07-12 10:34:12 -06:00
Ivan Kozlovic
009362dd65 Prepare for next release 2017-07-12 09:57:32 -06:00
Ivan Kozlovic
56649b3273 [FIXED] Possible data race in routez when route disconnects (#540)
* [FIXED] Possible data race in routez when route disconnects

Resolves #539
2017-07-11 16:11:22 -06:00
Ivan Kozlovic
1ca5e57b2d Merge pull request #538 from nats-io/use_loopback
Use loopback for some config reload tests
2017-07-11 11:48:11 -06:00
Ivan Kozlovic
edc1d74c0c Use loopback for some config reload tests 2017-07-11 11:38:32 -06:00
Ivan Kozlovic
00321097e4 Merge pull request #537 from nats-io/bump_check_cluster_timeout
Bumped timeout for checkClusterFormed and use stackFatalf()
2017-07-11 10:28:56 -06:00
Ivan Kozlovic
6755617914 Bumped timeout for checkClusterFormed and use stackFatalf() 2017-07-11 10:19:34 -06:00
Tyler Treat
d0a2661c32 Merge pull request #536 from nats-io/fix_symlink_garbage
Handle symlinks better
2017-07-11 11:12:34 -05:00
Tyler Treat
136355f28e Merge branch 'master' of github.com:nats-io/gnatsd into fix_symlink_garbage 2017-07-11 10:39:43 -05:00
Tyler Treat
10c70cb570 Handle symlinks better
It's hard to implement a bulletproof solution for cleaning up the
symlinks created by config reload tests on failure since, for example,
there is nothing we can do when log.Fatal is called. Instead, prevent
the existence of a symlink from failing the tests if there is one
hanging around. Generally, these symlinks will not be left unless
os.Exit was called (as is the case with log.Fatal).
2017-07-11 10:35:29 -05:00
Ivan Kozlovic
8a1ac81620 Merge pull request #535 from nats-io/config_reload_cluster_tests
Fixed some config reload cluster tests
2017-07-11 09:14:56 -06:00
Ivan Kozlovic
28d4420a2c Fixed some config reload cluster tests
Use checkClusterFormed() to minimize risk of test failures due
to the subscription not being registered through the cluster.
2017-07-11 09:06:00 -06:00
Tyler Treat
f246c09411 Merge pull request #533 from nats-io/fix_comment
Fix error in test comment
2017-07-10 19:38:48 -05:00
Tyler Treat
dea34307f1 Merge branch 'master' of github.com:nats-io/gnatsd into fix_comment 2017-07-10 19:00:49 -05:00
Ivan Kozlovic
8f52f53a90 Merge pull request #532 from nats-io/fix_windows
Fix "error opening file" errors in tests for Windows
2017-07-10 17:26:15 -06:00
Ivan Kozlovic
cae6b0b23a Some fixes
Use include so that we can have logfile and remote sys log tested
on platforms other than Windows.
Added some missing defer server.Shutdown() statements.
2017-07-10 16:33:19 -06:00
Tyler Treat
317a04f106 Fix error in test comment
The test is ensuring config reload fails when trying to change cluster
host.
2017-07-10 12:32:12 -05:00
Tyler Treat
ca1b3485cb Fix "error opening file" errors in tests for Windows
This sort of just punts on the problem by not creating log files in the
tests, but it seemed like the simplest solution.
2017-07-10 12:21:01 -05:00
Ivan Kozlovic
5f1275c548 Merge pull request #531 from nats-io/update_travis
Update travis
2017-07-10 10:19:34 -06:00
Ivan Kozlovic
e8c027cdf5 Merge pull request #529 from nats-io/replace_armv5_with_armv6
Replaced ARMv5 with ARMv6 in cross_compile
2017-07-10 10:13:31 -06:00
Ivan Kozlovic
335da2cad0 Fixed missing then
This was incorrectly removed in #505
2017-07-07 12:31:04 -06:00
Ivan Kozlovic
7d6414dcf2 Run code coverage in script:
For all builds, we were running `go test -race`, and for a specific
version of Go, we were running the code coverage suite on success.
The code coverage uses `-covermode=atomic`, which is equivalent
of running with `-race`, so we will now run the code coverage
in the `script: ` section for that Go version and `go test -race`
for the other.
This prevents the double tests for the target Go version.
2017-07-06 17:35:35 -06:00
Ivan Kozlovic
9d932b9c6a Replaced ARMv5 with ARMv6 in cross_compile
Related to #527
2017-07-06 17:07:58 -06:00
Ivan Kozlovic
b6e43c0dc1 Merge pull request #527 from nats-io/cross_compile_arm
[ADDED] Build for ARMv7
2017-07-06 09:45:10 -06:00
Ivan Kozlovic
aa36f37ff4 [ADDED] Build for ARMv7
The cross compile script compiled an ARM executable, but the ARM
default version varies based on the host, etc..
Made a change to the cross compile script to explicitly compile
ARMv5 and ARMv7.
2017-07-06 09:00:29 -06:00
Tyler Treat
43a4b7386a Merge pull request #528 from nats-io/fix_some_tests
Fix some tests
2017-07-06 09:56:17 -05:00
Ivan Kozlovic
70b3b18535 Fix some tests
Fixing various tests that were failing locally when running in
parallel mode (without -p=1).
In reload_test.go, lots of nats.Conn.Close() were missing which
would require too much memory when running with `-race` mode.
2017-07-05 18:57:15 -06:00
Ivan Kozlovic
6a0830fbdc Update Dockerfile's Go version to 1.7.6 [ci skip] 2017-06-30 12:25:01 -06:00
Tyler Treat
4d71987822 Merge pull request #524 from nats-io/enable_config_reload
Implement config reload
2017-06-28 16:36:26 -05:00
Tyler Treat
2ed9c64f66 Merge branch 'master' of github.com:nats-io/gnatsd into enable_config_reload 2017-06-28 14:42:11 -05:00
Tyler Treat
446cf96c76 Merge pull request #523 from nats-io/logtime_reload
Round out config reload
2017-06-28 14:35:37 -05:00
Tyler Treat
54e23a3989 Enable syslog when running as Windows service
This writes logs to the Windows event log.
2017-06-28 14:16:26 -05:00
Peter Miron
52e97e37cb removed sudo: false. as sudo: true is required and causing separate failures. 2017-06-28 12:52:46 -04:00
Peter Miron
cef37da380 added sudo: false to test .travis.yml failures. 2017-06-28 12:46:23 -04:00
Tyler Treat
2a7af1b892 Move mpay field for memory alignment 2017-06-28 11:29:10 -05:00
Tyler Treat
901a5c7122 Address CR feedback 2017-06-28 11:05:02 -05:00