Skip to content

Commit 04ffac3

Browse files
committedAug 29, 2015
s/bitly/nsqio
1 parent 0f97a46 commit 04ffac3

File tree

4 files changed

+18
-19
lines changed

4 files changed

+18
-19
lines changed
 

‎ChangeLog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ release no longer compiles with Go `1.0.x`.
4747
* #91 - add consumer `DisconnectFrom*`
4848
* #87 - allow `heartbeat_interval` and `output_buffer_timeout` to be disabled
4949
* #86 - pluggable `nsqlookupd` behaviors
50-
* #83 - send `RDY` before `FIN`/`REQ` (forwards compatibility with bitly/nsq#404)
50+
* #83 - send `RDY` before `FIN`/`REQ` (forwards compatibility with nsqio/nsq#404)
5151
* #82 - fix panic when conn isn't assigned
5252
* #75/#76 - minor config related bug fixes
5353
* #75/#77/#78 - add `tls-cert` and `tls-key` config options

‎README.md

+11-12
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
The official Go package for [NSQ][nsq].
44

5-
[![Build Status](https://secure.travis-ci.org/bitly/go-nsq.png?branch=master)][travis] [![GoDoc](https://godoc.org/github.com/bitly/go-nsq?status.svg)](https://godoc.org/github.com/bitly/go-nsq)
5+
[![Build Status](https://secure.travis-ci.org/nsqio/go-nsq.png?branch=master)][travis] [![GoDoc](https://godoc.org/github.com/nsqio/go-nsq?status.svg)](https://godoc.org/github.com/nsqio/go-nsq)
66

7-
The latest stable release is **[1.0.4][latest_tag]**.
7+
The latest stable release is **[1.0.4][latest_tag]**
88

99
NOTE: The public API has been refactored as of `v1.0.0` and is not backwards compatible with
1010
previous releases. **[0.3.7][legacy]** is the last stable release compatible with the legacy API.
@@ -16,13 +16,12 @@ See [godoc][nsq_gopkgdoc].
1616

1717
See the [main repo apps][apps] directory for examples of clients built using this package.
1818

19-
[nsq]: https://github.com/bitly/nsq
20-
[nsq_gopkgdoc]: http://godoc.org/github.com/bitly/go-nsq
21-
[protocol]: http://bitly.github.io/nsq/clients/tcp_protocol_spec.html
22-
[apps]: https://github.com/bitly/nsq/tree/master/apps
23-
[consumer]: http://godoc.org/github.com/bitly/go-nsq#Consumer
24-
[producer]: http://godoc.org/github.com/bitly/go-nsq#Producer
25-
[pr30]: https://github.com/bitly/go-nsq/pull/30
26-
[legacy]: https://github.com/bitly/go-nsq/releases/tag/v0.3.7
27-
[travis]: http://travis-ci.org/bitly/go-nsq
28-
[latest_tag]: https://github.com/bitly/go-nsq/releases/tag/v1.0.4
19+
[nsq]: https://github.com/nsqio/nsq
20+
[nsq_gopkgdoc]: http://godoc.org/github.com/nsqio/go-nsq
21+
[apps]: https://github.com/nsqio/nsq/tree/master/apps
22+
[consumer]: http://godoc.org/github.com/nsqio/go-nsq#Consumer
23+
[producer]: http://godoc.org/github.com/nsqio/go-nsq#Producer
24+
[pr30]: https://github.com/nsqio/go-nsq/pull/30
25+
[legacy]: https://github.com/nsqio/go-nsq/releases/tag/v0.3.7
26+
[travis]: http://travis-ci.org/nsqio/go-nsq
27+
[latest_tag]: https://github.com/nsqio/go-nsq/releases/tag/v1.0.4

‎UPGRADING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ We've learned a lot over the last 2 years and we wanted `go-nsq` to reflect the
1010
had working with the library as well as the general Go conventions and best practices we picked up
1111
along the way.
1212

13-
The diff can be seen via: https://github.com/bitly/go-nsq/compare/v0.3.7...HEAD
13+
The diff can be seen via: https://github.com/nsqio/go-nsq/compare/v0.3.7...HEAD
1414

15-
The bulk of the refactoring came via: https://github.com/bitly/go-nsq/pull/30
15+
The bulk of the refactoring came via: https://github.com/nsqio/go-nsq/pull/30
1616

1717
#### Naming
1818

‎config_flag_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ package nsq_test
33
import (
44
"flag"
55

6-
"github.com/bitly/go-nsq"
6+
"github.com/nsqio/go-nsq"
77
)
88

99
func ExampleConfigFlag() {
1010
cfg := nsq.NewConfig()
1111
flagSet := flag.NewFlagSet("", flag.ExitOnError)
1212

13-
flagSet.Var(&nsq.ConfigFlag{cfg}, "consumer.options", "option to passthrough to nsq.Consumer (may be given multiple times, http://godoc.org/github.com/bitly/go-nsq#Config.Set)")
13+
flagSet.Var(&nsq.ConfigFlag{cfg}, "consumer-opt", "option to pass through to nsq.Consumer (may be given multiple times)")
1414
flagSet.PrintDefaults()
1515

1616
err := flagSet.Parse([]string{
17-
"-consumer.options=heartbeat_interval,1s",
18-
"-consumer.options=max_attempts,10",
17+
"--consumer-opt=heartbeat_interval,1s",
18+
"--consumer-opt=max_attempts,10",
1919
})
2020
if err != nil {
2121
panic(err.Error())

0 commit comments

Comments
 (0)
Please sign in to comment.