Commit Graph

1288 Commits

Author SHA1 Message Date
Glenn Matthys
89cbb9613c Remove PIDFile and implement Reload & Stop commands
Removes PIDFile (gnatsd doesn't create a pid file) and implements the
Reload and Stop service commands
2017-09-20 21:24:51 +02:00
Glenn Matthys
1415511cdf Add systemd unit file 2017-09-13 16:45:28 +02:00
Ivan Kozlovic
c3e09519f9 Merge pull request #584 from nats-io/accept_error_level
[CHANGED] Client Accept error log level
2017-09-11 09:04:08 -06:00
Tyler Treat
4a6fd4317a Change client Accept error log level
This is an error users should know about. Thus, the log level should be
error.

Fixes #583
2017-09-11 09:14:10 -05:00
Ivan Kozlovic
0c3d4ce7fa Merge pull request #573 from nats-io/fix_sublist_insert_remove
[FIXED] Sublist Insert and Remove with wildcard characters in literals
2017-09-08 10:12:54 -06:00
Ivan Kozlovic
114bd5ee1f Merge pull request #581 from nats-io/update_configure_options
Pass functions to ConfigureOptions to print version, help, tls help
2017-09-08 10:10:36 -06:00
Ivan Kozlovic
8b4a02dd9a Pass functions to ConfigureOptions to print version, help, tls help
This will allow NATS Streaming to provide its own version of what
should be printed when various flags are set.

Related to #578
2017-09-08 09:59:04 -06:00
Tyler Treat
b58178d743 Merge pull request #579 from nats-io/check_parse_returned_error
Added error check for fs.Parse() call
2017-09-07 12:25:30 -05:00
Ivan Kozlovic
6ba9269cda Added error check for fs.Parse() call
This is just for tests since from main.go, the FlagSet is set
with ExitOnError so Parse() would call os.Exit(2).
Regardless, I wanted to add error checking and a test for that.

Related to #578
2017-09-07 10:37:46 -06:00
Ivan Kozlovic
dbe9bc79ee Merge pull request #578 from nats-io/add_configure_options
[FIXED] Override from command line not always working
2017-09-07 09:46:41 -06:00
Ivan Kozlovic
684a2e4173 Update based on code review 2017-09-07 09:06:37 -06:00
Ivan Kozlovic
379a14b8cc [FIXED] Override from command line not always working
There were some cases where override would not work. Any command
line parameter that would be set to the type default value (false
for boolean, "" for string, etc) would not be taken into account.

I moved all the flags parsing and options configuration into
a new function, which may help reduce code duplication in
NATS Streaming.

The other advantage of moving this in a function is that it
can now be unit tested.

I am also removing call to `RemoveSelfReference()` which attempted
to remove a route to self, which has been already solved at runtime
with detecting and ignoring a route to self.

This function would be invoked only when routes were defined in
the configuration file, not in the command line parameter.

Removing this call also solves an user issue (#577)

Resolves #574
Resolves #577
2017-09-06 17:31:53 -06:00
Ivan Kozlovic
8ec1f77ac8 [FIXED] Sublist Insert and Remove with wildcard characters in literals
This is similar to #561 where `*` and `>` characters appear in tokens
as literals, not wilcards.
Both Insert() and Remove() were checking that the first character
was `*` or `>` and consider it a wildcard node. This is wrong. Any
token that is more than 1 character long must be treated as a literal.
Only for token of size one should we check if the character is `*`
or `>`.
Added a test case for Insert and Remove with subject like `foo.*-`
or `foo.>-`.
2017-08-31 18:48:45 -06:00
Tyler Treat
c7fc87659a Merge pull request #572 from nats-io/perms_cache_fix
Fix permissions cache pruning
2017-08-31 15:19:25 -05:00
Tyler Treat
713b1c5722 Fix permissions cache pruning
We were pruning the wrong cache.
2017-08-31 14:00:30 -05:00
Ivan Kozlovic
7bb563df49 Merge pull request #570 from nats-io/update_travis_go_version
Update travis
2017-08-29 11:39:40 -06:00
Ivan Kozlovic
919512f07c Update travis 2017-08-29 11:26:41 -06:00
Sergey Sarbash
1ea25001a2 DOC: added a clarification about a token usage (#563)
* DOC: added a clarification about a token usage

* Minor edits, correction and example

- minor language edits
- corrected name of `util/mkpasswd.go` for all prior references to `util/mkpassword.go`
- gave example output from `util/mkpasswd.go` with comments referencing where to use pass vs bcrypt hash.
2017-08-28 11:13:45 -04:00
Ivan Kozlovic
4246f83c74 Merge pull request #567 from nats-io/add_arm_build
[ADDED] ARM64v8 Build
2017-08-25 14:51:58 -06:00
Ivan Kozlovic
3179575b15 Exclude megacheck for Go 1.9 for now 2017-08-25 09:59:11 -06:00
Ivan Kozlovic
049675088d [ADDED] ARM64v8 Release build
- Add linux/arm64 to cross compile script
- Update .travis.yml to push builds on Go 1.8.x version
- Update Dockerfile to Go 1.8.3
- Change Dockerfile.win64 to actually build all the builds that
  we would want to provide a Docker image for
2017-08-25 09:20:31 -06:00
Peter Miron
f2854ee461 increased tls timeout to get test passing on arm. (#566)
* increased tls timeout to get test passing on arm.

* fixed timeout to appropriate integer.
2017-08-24 19:36:07 -07:00
Ivan Kozlovic
10fd640aa4 Merge pull request #561 from nats-io/fix_issue_558
[FIXED] Use of `*` and `>` in subjects as literals
2017-08-24 20:26:12 -06:00
Ivan Kozlovic
2de6622fd0 Update MIT License Copyright data [ci skip] 2017-08-24 09:23:33 -06:00
Ivan Kozlovic
0cc49ece4a Improve matchLiteral further and add some more tests 2017-08-17 13:00:09 -06:00
Ivan Kozlovic
42b27d2710 Improve matchLiteral performance and simplify if conditions 2017-08-16 17:43:33 -06:00
Ivan Kozlovic
30eeac27e9 add matchLiteral benchmark 2017-08-16 16:28:24 -06:00
Ivan Kozlovic
515779ae0b [FIXED] Use of * and > in subjects as literals
The issue was that a subject such as `foo.bar,*,>` would be
inserted to the cache as is, but when trying to remove from the
cache, calling matchLiteral() with the above subject in the cache
against the same subject would return false. This is because
matchLiteral would treat those characters as wildcards token.

Note that the sublist itself splits subjects on the `.` separator
and seem not bothered by such subject (would have `foo` and `bar,*,>`
tokens). Also, note that IsValidSubject() and IsValidLiteralSubject()
properly checked that the characters `*` and `>` are treated
as wildcards only if they are tokens on their own.

Resolves #558
2017-08-16 12:12:18 -06:00
Peter Miron
050049c2c7 Merge pull request #556 from nats-io/doc-string-escape
Document string escape behavior [ci skip]
2017-08-16 12:16:36 -04:00
Peter Miron
5f8188f40a Update README.md
updated per Ivan's recommendation.
2017-08-16 12:15:25 -04:00
Tyler Treat
0497d59279 Merge pull request #559 from nats-io/update-office-hours
Update office hours schedule [ci skip]
2017-08-14 11:40:17 -05:00
Colin Sullivan
6099eb9c36 Update office hours schedule [ci skip] 2017-08-14 10:35:10 -06:00
Ivan Kozlovic
8fe9ef27c7 Merge pull request #557 from nats-io/add_megacheck
Added megacheck
2017-08-14 09:47:27 -06:00
Ivan Kozlovic
20926a6176 Added megacheck
This tool combines staticcheck, gosimple and unused.
Fixed reports from unused.
2017-08-11 17:28:18 -06:00
Colin Sullivan
dd59ba184f Document string escape behavior [ci skip] 2017-08-10 15:19:14 -06:00
Ivan Kozlovic
396d9f9d76 Merge pull request #552 from nogoegst/default-options-func
Use DefaultOptions as function that produces new Options on every call
2017-08-07 20:56:36 -06:00
Tyler Treat
f2be329857 Merge pull request #554 from nats-io/office-hours
Add a community section and office hours [ci skip]
2017-08-07 12:45:55 -05:00
Colin Sullivan
393bbb7c03 Add a community section and office hours. 2017-08-04 13:21:32 -06:00
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