From c7015176df1e404f1f568ec740c1bb7a72c75d1e Mon Sep 17 00:00:00 2001 From: Robert Laszczak Date: Sat, 6 Jul 2019 20:50:33 +0200 Subject: [PATCH] Moved pub/subs implementations to separated repositories (#103) --- .circleci/config.yml | 11 +- .circleci/docker-compose.override.yml | 12 - .circleci/wait-for-services.sh | 4 +- .golangci.yml | 8 +- LICENSE | 2 +- Makefile | 10 +- README.md | 16 +- UPGRADE-1.0.md | 5 + _examples/cqrs-protobuf/go.mod | 4 +- _examples/cqrs-protobuf/go.sum | 102 ++-- _examples/cqrs-protobuf/main.go | 2 +- _examples/http-to-kafka/go.mod | 11 +- _examples/http-to-kafka/go.sum | 102 +++- _examples/http-to-kafka/main.go | 4 +- _examples/kafka-to-http/producer/go.mod | 5 +- _examples/kafka-to-http/producer/go.sum | 87 ++- _examples/kafka-to-http/producer/main.go | 2 +- _examples/kafka-to-http/router/go.mod | 11 +- _examples/kafka-to-http/router/go.sum | 101 +++- _examples/kafka-to-http/router/main.go | 4 +- _examples/metrics/go.mod | 9 +- _examples/metrics/go.sum | 92 +--- _examples/simple-app/publishing-app/go.mod | 6 +- _examples/simple-app/publishing-app/go.sum | 89 ++-- _examples/simple-app/publishing-app/main.go | 2 +- _examples/simple-app/subscribing-app/go.mod | 6 +- _examples/simple-app/subscribing-app/go.sum | 92 ++-- _examples/simple-app/subscribing-app/main.go | 2 +- _examples/your-first-app/go.mod | 6 +- _examples/your-first-app/go.sum | 89 ++-- _examples/your-first-app/main.go | 2 +- dev/consolidate-gomods/main.go | 82 +++ docs/content/docs/getting-started/amqp/go.mod | 6 +- docs/content/docs/getting-started/amqp/go.sum | 102 ++-- .../content/docs/getting-started/amqp/main.go | 2 +- .../docs/getting-started/go-channel/go.mod | 2 +- .../docs/getting-started/go-channel/go.sum | 99 ++-- .../docs/getting-started/googlecloud/go.mod | 12 +- .../docs/getting-started/googlecloud/go.sum | 90 ++-- .../docs/getting-started/googlecloud/main.go | 2 +- .../content/docs/getting-started/kafka/go.mod | 5 +- .../content/docs/getting-started/kafka/go.sum | 87 ++- .../docs/getting-started/kafka/main.go | 2 +- .../getting-started/nats-streaming/go.mod | 32 +- .../getting-started/nats-streaming/go.sum | 147 ++++-- .../getting-started/nats-streaming/main.go | 2 +- .../docs/getting-started/router/go.mod | 5 +- .../docs/getting-started/router/go.sum | 102 ++-- docs/content/docs/message/go.mod | 2 +- docs/content/docs/message/go.sum | 99 ++-- .../docs/snippets/amqp-consumer-groups/go.mod | 6 +- .../docs/snippets/amqp-consumer-groups/go.sum | 102 ++-- .../snippets/amqp-consumer-groups/main.go | 2 +- .../docs/snippets/tail-log-file/go.mod | 8 + .../docs/snippets/tail-log-file/go.sum | 68 +++ .../docs/snippets/tail-log-file/main.go | 4 +- go.mod | 11 +- go.sum | 162 +----- message/infrastructure/amqp/config.go | 493 ----------------- message/infrastructure/amqp/connection.go | 167 ------ message/infrastructure/amqp/doc.go | 21 - message/infrastructure/amqp/marshaler.go | 90 ---- message/infrastructure/amqp/marshaler_test.go | 97 ---- message/infrastructure/amqp/publisher.go | 163 ------ .../amqp/pubsub_reconnect_test.go | 18 - .../infrastructure/amqp/pubsub_stress_test.go | 37 -- message/infrastructure/amqp/pubsub_test.go | 152 ------ message/infrastructure/amqp/subscriber.go | 302 ----------- .../infrastructure/amqp/topology_builder.go | 70 --- .../infrastructure/googlecloud/marshaler.go | 72 --- .../infrastructure/googlecloud/provider.go | 6 - .../infrastructure/googlecloud/publisher.go | 199 ------- .../googlecloud/pubsub_bench_test.go | 36 -- .../googlecloud/pubsub_stress_test.go | 25 - .../infrastructure/googlecloud/pubsub_test.go | 138 ----- .../infrastructure/googlecloud/subscriber.go | 402 -------------- .../http/marshall_message_test.go | 47 -- message/infrastructure/http/provider.go | 7 - message/infrastructure/http/publisher.go | 165 ------ message/infrastructure/http/pubsub_test.go | 97 ---- message/infrastructure/http/subscriber.go | 194 ------- message/infrastructure/io/doc.go | 5 - message/infrastructure/io/marshal.go | 98 ---- message/infrastructure/io/marshal_test.go | 52 -- message/infrastructure/io/publisher.go | 99 ---- message/infrastructure/io/publisher_test.go | 82 --- message/infrastructure/io/subscriber.go | 232 -------- message/infrastructure/kafka/config.go | 22 - message/infrastructure/kafka/marshaler.go | 94 ---- .../infrastructure/kafka/marshaler_test.go | 118 ----- message/infrastructure/kafka/publisher.go | 103 ---- .../infrastructure/kafka/pubsub_bench_test.go | 41 -- .../kafka/pubsub_stress_test.go | 37 -- message/infrastructure/kafka/pubsub_test.go | 145 ----- message/infrastructure/kafka/subscriber.go | 498 ------------------ message/infrastructure/nats/connection.go | 24 - message/infrastructure/nats/marshaler.go | 62 --- message/infrastructure/nats/marshaler_test.go | 67 --- message/infrastructure/nats/publisher.go | 119 ----- .../infrastructure/nats/pubsub_stress_test.go | 23 - message/infrastructure/nats/pubsub_test.go | 71 --- message/infrastructure/nats/subscriber.go | 407 -------------- message/infrastructure/sql/offsets_adapter.go | 76 --- message/infrastructure/sql/publisher.go | 154 ------ message/infrastructure/sql/pubsub_test.go | 105 ---- message/infrastructure/sql/schema.go | 40 -- message/infrastructure/sql/schema_adapter.go | 142 ----- .../infrastructure/sql/schema_adapter_test.go | 27 - message/infrastructure/sql/sql.go | 30 -- message/infrastructure/sql/subscriber.go | 373 ------------- message/infrastructure/sql/topic.go | 21 - message/infrastructure/sql/topic_test.go | 29 - message/infrastructure/test_pubsub.go | 15 +- tools/mill/cmd/amqp.go | 2 +- tools/mill/cmd/consume.go | 2 +- tools/mill/cmd/googlecloud.go | 2 +- tools/mill/cmd/kafka.go | 2 +- tools/mill/cmd/produce.go | 2 +- tools/mill/go.mod | 25 +- tools/mill/go.sum | 218 +++----- 120 files changed, 1150 insertions(+), 7653 deletions(-) create mode 100644 UPGRADE-1.0.md create mode 100644 dev/consolidate-gomods/main.go create mode 100644 docs/content/docs/snippets/tail-log-file/go.mod create mode 100644 docs/content/docs/snippets/tail-log-file/go.sum delete mode 100644 message/infrastructure/amqp/config.go delete mode 100644 message/infrastructure/amqp/connection.go delete mode 100644 message/infrastructure/amqp/doc.go delete mode 100644 message/infrastructure/amqp/marshaler.go delete mode 100644 message/infrastructure/amqp/marshaler_test.go delete mode 100644 message/infrastructure/amqp/publisher.go delete mode 100644 message/infrastructure/amqp/pubsub_reconnect_test.go delete mode 100644 message/infrastructure/amqp/pubsub_stress_test.go delete mode 100644 message/infrastructure/amqp/pubsub_test.go delete mode 100644 message/infrastructure/amqp/subscriber.go delete mode 100644 message/infrastructure/amqp/topology_builder.go delete mode 100644 message/infrastructure/googlecloud/marshaler.go delete mode 100644 message/infrastructure/googlecloud/provider.go delete mode 100644 message/infrastructure/googlecloud/publisher.go delete mode 100644 message/infrastructure/googlecloud/pubsub_bench_test.go delete mode 100644 message/infrastructure/googlecloud/pubsub_stress_test.go delete mode 100644 message/infrastructure/googlecloud/pubsub_test.go delete mode 100644 message/infrastructure/googlecloud/subscriber.go delete mode 100644 message/infrastructure/http/marshall_message_test.go delete mode 100644 message/infrastructure/http/provider.go delete mode 100644 message/infrastructure/http/publisher.go delete mode 100644 message/infrastructure/http/pubsub_test.go delete mode 100644 message/infrastructure/http/subscriber.go delete mode 100644 message/infrastructure/io/doc.go delete mode 100644 message/infrastructure/io/marshal.go delete mode 100644 message/infrastructure/io/marshal_test.go delete mode 100644 message/infrastructure/io/publisher.go delete mode 100644 message/infrastructure/io/publisher_test.go delete mode 100644 message/infrastructure/io/subscriber.go delete mode 100644 message/infrastructure/kafka/config.go delete mode 100644 message/infrastructure/kafka/marshaler.go delete mode 100644 message/infrastructure/kafka/marshaler_test.go delete mode 100644 message/infrastructure/kafka/publisher.go delete mode 100644 message/infrastructure/kafka/pubsub_bench_test.go delete mode 100644 message/infrastructure/kafka/pubsub_stress_test.go delete mode 100644 message/infrastructure/kafka/pubsub_test.go delete mode 100644 message/infrastructure/kafka/subscriber.go delete mode 100644 message/infrastructure/nats/connection.go delete mode 100644 message/infrastructure/nats/marshaler.go delete mode 100644 message/infrastructure/nats/marshaler_test.go delete mode 100644 message/infrastructure/nats/publisher.go delete mode 100644 message/infrastructure/nats/pubsub_stress_test.go delete mode 100644 message/infrastructure/nats/pubsub_test.go delete mode 100644 message/infrastructure/nats/subscriber.go delete mode 100644 message/infrastructure/sql/offsets_adapter.go delete mode 100644 message/infrastructure/sql/publisher.go delete mode 100644 message/infrastructure/sql/pubsub_test.go delete mode 100644 message/infrastructure/sql/schema.go delete mode 100644 message/infrastructure/sql/schema_adapter.go delete mode 100644 message/infrastructure/sql/schema_adapter_test.go delete mode 100644 message/infrastructure/sql/sql.go delete mode 100644 message/infrastructure/sql/subscriber.go delete mode 100644 message/infrastructure/sql/topic.go delete mode 100644 message/infrastructure/sql/topic_test.go diff --git a/.circleci/config.yml b/.circleci/config.yml index dd6a8b17d..318127bf4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,16 @@ tests_steps: &tests_steps - run: name: Prepare Docker Compose command: | - cp ./.circleci/docker-compose.override.yml . + if [ ! -f docker-compose.yml ]; then + cp ./.circleci/docker-compose.override.yml docker-compose.yml + else + if [ -f ./.circleci/docker-compose.override.yml ]; then + cp ./.circleci/docker-compose.override.yml . + else + echo "docker-compose.override.yml does not exist" + fi + fi + docker-compose pull - run: name: Run Docker Compose diff --git a/.circleci/docker-compose.override.yml b/.circleci/docker-compose.override.yml index 098e3bad1..d5238a0c3 100644 --- a/.circleci/docker-compose.override.yml +++ b/.circleci/docker-compose.override.yml @@ -7,16 +7,4 @@ services: - .:/app - .mod-cache:/go/pkg/mod working_dir: /app - environment: - PUBSUB_EMULATOR_HOST: googlecloud:8085 - WATERMILL_TEST_NATS_URL: nats://nats-streaming:4222 - WATERMILL_TEST_AMQP_URI: amqp://guest:guest@rabbitmq:5672 - WATERMILL_TEST_KAFKA_BROKERS: kafka:9092 - WATERMILL_TEST_MYSQL_HOST: mysql:3306 - kafka: - environment: - KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://kafka:9092 - - googlecloud: - entrypoint: gcloud --quiet beta emulators pubsub start --host-port=googlecloud:8085 --verbosity=debug --log-http diff --git a/.circleci/wait-for-services.sh b/.circleci/wait-for-services.sh index 7454c1b6d..de2c2ed84 100755 --- a/.circleci/wait-for-services.sh +++ b/.circleci/wait-for-services.sh @@ -1,6 +1,4 @@ #!/bin/bash set -e -for service in zookeeper:2181 rabbitmq:5672 googlecloud:8085 nats-streaming:4222 kafka:9092 mysql:3306; do - "$(dirname "$0")/wait-for-it.sh" -t 60 "$service" -done +# no requirements diff --git a/.golangci.yml b/.golangci.yml index 18d483d3c..c6443cd02 100644 --- a/.golangci.yml +++ b/.golangci.yml @@ -1,6 +1,8 @@ service: prepare: + - go run dev/consolidate-gomods/main.go >> go.mod - GO111MODULE=on go mod vendor - - cd tools/mill/ && pwd && GO111MODULE=on go mod vendor - - cp tools/mill/vendor/* vendor -r - - rm vendor/github.com/ThreeDotsLabs/watermill/ -rf \ No newline at end of file + - rm vendor/github.com/ThreeDotsLabs/watermill/ -rf + +run: + concurrency: 8 diff --git a/LICENSE b/LICENSE index ac596420e..20c82ae16 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Three Dots Labs +Copyright (c) 2019 Three Dots Labs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index 59074195d..0fbf5121c 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,6 @@ up: docker-compose up -mycli: - @mycli -h 127.0.0.1 -u root -p secret - test: go test ./... @@ -26,9 +23,16 @@ validate_examples: go run dev/update-examples-deps/main.go bash dev/validate_examples.sh + +fmt: + go fmt ./... + goimports -l -w . + generate_gomod: rm go.mod go.sum || true go mod init github.com/ThreeDotsLabs/watermill + go install ./... sed -i '\|go |d' go.mod go mod edit -fmt + diff --git a/README.md b/README.md index 035aa4955..542f34d11 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ for building event driven applications, enabling event sourcing, RPC over messag sagas and basically whatever else comes to your mind. You can use conventional pub/sub implementations like Kafka or RabbitMQ, but also HTTP or MySQL binlog if that fits your use case. -**Note:** Watermill should run reliably in a production environment, but it is still under heavy development and the public API may change before the 1.0.0 release. +**Note:** This is README file is created for `master`. You may want to check README [for release v0.4.0.](https://github.com/ThreeDotsLabs/watermill/tree/v0.4.0#watermill) Documentation: https://watermill.io/ @@ -61,7 +61,19 @@ type Subscriber interface { } ``` -All Pub/Subs implementation can be found in the [documentation](https://watermill.io/docs/pub-sub-implementations/). +Supported Pub/Subs: + + +- AMQP Pub/Sub [(`github.com/ThreeDotsLabs/watermill-amqp`)](https://github.com/ThreeDotsLabs/watermill-amqp/) +- Google Cloud Pub/Sub [(`github.com/ThreeDotsLabs/watermill-googlecloud`)](https://github.com/ThreeDotsLabs/watermill-googlecloud/) +- HTTP Pub/Sub [(`github.com/ThreeDotsLabs/watermill-http`)](https://github.com/ThreeDotsLabs/watermill-http/) +- io.Reader/io.Writer Pub/Sub [(`github.com/ThreeDotsLabs/watermill-io`)](https://github.com/ThreeDotsLabs/watermill-io/) +- Kafka Pub/Sub [(`github.com/ThreeDotsLabs/watermill-kafka`)](https://github.com/ThreeDotsLabs/watermill-kafka/) +- NATS Pub/Sub [(`github.com/ThreeDotsLabs/watermill-nats`)](https://github.com/ThreeDotsLabs/watermill-nats/) +- SQL Pub/Sub [(`github.com/ThreeDotsLabs/watermill-sql`)](https://github.com/ThreeDotsLabs/watermill-sql/) + + +All Pub/Subs implementation documentation can be found in the [documentation](https://watermill.io/docs/pub-sub-implementations/). ## Examples * [Your first app](_examples/your-first-app) - start here! diff --git a/UPGRADE-1.0.md b/UPGRADE-1.0.md new file mode 100644 index 000000000..9f669054d --- /dev/null +++ b/UPGRADE-1.0.md @@ -0,0 +1,5 @@ +# TODO + +Migrating Pub/Subs + + find . -type f -iname '*.go' -exec sed -i -E "s/github\.com\/ThreeDotsLabs\/watermill\/message\/infrastructure\/(amqp|googlecloud|http|io|kafka|nats|sql)/github.com\/ThreeDotsLabs\/watermill-\1\/pkg\/\1/" "{}" +; diff --git a/_examples/cqrs-protobuf/go.mod b/_examples/cqrs-protobuf/go.mod index 725156c31..469b07f91 100644 --- a/_examples/cqrs-protobuf/go.mod +++ b/_examples/cqrs-protobuf/go.mod @@ -1,7 +1,9 @@ module main.go require ( - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect github.com/golang/protobuf v1.3.1 github.com/pkg/errors v0.8.1 ) diff --git a/_examples/cqrs-protobuf/go.sum b/_examples/cqrs-protobuf/go.sum index 953bd5c88..0fdc85228 100644 --- a/_examples/cqrs-protobuf/go.sum +++ b/_examples/cqrs-protobuf/go.sum @@ -1,103 +1,75 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 h1:kP2LSLaxa0lAfnKbLFImmv2q93v++wt6S4/mOoBWABE= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25/go.mod h1:oQQihB/EEkroQWalJCTrdpquz4bxQEP58VfuTR/fMiQ= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible h1:tKJnvO2kl0zmb/jA5UKAt4VoEVw1qxKWjE/Bpp46npY= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 h1:0ngsPmuP6XIjiFRNFYlvKwSr5zff2v+uPHaffZ6/M4k= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/_examples/cqrs-protobuf/main.go b/_examples/cqrs-protobuf/main.go index d102a44e8..7adad06f7 100644 --- a/_examples/cqrs-protobuf/main.go +++ b/_examples/cqrs-protobuf/main.go @@ -10,7 +10,7 @@ import ( "github.com/pkg/errors" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/amqp" + "github.com/ThreeDotsLabs/watermill-amqp/pkg/amqp" "github.com/golang/protobuf/ptypes" "github.com/ThreeDotsLabs/watermill" diff --git a/_examples/http-to-kafka/go.mod b/_examples/http-to-kafka/go.mod index 608c139a4..5be493790 100644 --- a/_examples/http-to-kafka/go.mod +++ b/_examples/http-to-kafka/go.mod @@ -2,8 +2,15 @@ module main.go require ( github.com/DataDog/zstd v1.4.0 // indirect - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-http v0.0.0-20190623210314-f363bf68c852 + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect github.com/pierrec/lz4 v2.0.5+incompatible // indirect github.com/pkg/errors v0.8.1 - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect + golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5 // indirect + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect + golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b // indirect + golang.org/x/text v0.3.2 // indirect + golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c // indirect ) diff --git a/_examples/http-to-kafka/go.sum b/_examples/http-to-kafka/go.sum index 0803eba53..043091016 100644 --- a/_examples/http-to-kafka/go.sum +++ b/_examples/http-to-kafka/go.sum @@ -1,6 +1,8 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= @@ -8,11 +10,24 @@ github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0 github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190622135636-f82eaeea68ee/go.mod h1:+tyEaAfubnVYeYspHY9+Dc6yscxa5rNZsAuljyaN7PA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-http v0.0.0-20190623210314-f363bf68c852 h1:gMwpN6KsMDRE07fQupyKv5CPlUOm/2dcOidSvuZrDlo= +github.com/ThreeDotsLabs/watermill-http v0.0.0-20190623210314-f363bf68c852/go.mod h1:dZ5UIAB093MazxrG0AJq9TmrLmP2xpi+SlcELrgrqBo= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 h1:xJ4a3vCFaGF/jqvzLMYoU8P317H5OQ+Via4RmuPwCS0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= +github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= +github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -25,94 +40,167 @@ github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible h1:maB6vn6FqCxrpz4FqWdh4+lwpyZIQS7YEAUcHlgXVRs= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-hclog v0.9.1/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= +github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= +github.com/hashicorp/go-msgpack v0.5.5/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= +github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/raft v1.1.0/go.mod h1:4Ak7FSPnuvmb0GV6vgIAJ4vYT4bek9bb6Q+7HVbyzqM= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/nats-io/jwt v0.2.6/go.mod h1:mQxQ0uHQ9FhEVPIcTSKwx2lqZEpXWWcCgA7R6NrWvvY= +github.com/nats-io/nats-server/v2 v2.0.0/go.mod h1:RyVdsHHvY4B6c9pWG+uRLpZ0h0XsqiuKp2XCTurP5LI= +github.com/nats-io/nats-streaming-server v0.15.1/go.mod h1:bJ1+2CS8MqvkGfr/NwnCF+Lw6aLnL3F5kenM8bZmdCw= +github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/nats-io/stan.go v0.4.5/go.mod h1:Ji7mK6gRZJSH1nc3ZJH6vi7zn/QnZhpR9Arm4iuzsUQ= +github.com/nats-io/stan.go v0.5.0/go.mod h1:dYqB+vMN3C2F9pT1FRQpg9eHbjPj6mP0yYuyBNuXHZE= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.4/go.mod h1:oCXIBxdI62A4cR6aTRJCgetEjecSIYzOEaeAn4iYEpM= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 h1:idejC8f05m9MGOsuEi1ATq9shN03HrxNkD/luQvxCv8= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= +go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= +golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/_examples/http-to-kafka/main.go b/_examples/http-to-kafka/main.go index ad8e6b75e..f02245348 100644 --- a/_examples/http-to-kafka/main.go +++ b/_examples/http-to-kafka/main.go @@ -10,9 +10,9 @@ import ( "github.com/pkg/errors" "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-http/pkg/http" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/http" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" "github.com/ThreeDotsLabs/watermill/message/router/middleware" "github.com/ThreeDotsLabs/watermill/message/router/plugin" ) diff --git a/_examples/kafka-to-http/producer/go.mod b/_examples/kafka-to-http/producer/go.mod index 6208fa3ae..1522ec8b4 100644 --- a/_examples/kafka-to-http/producer/go.mod +++ b/_examples/kafka-to-http/producer/go.mod @@ -2,7 +2,8 @@ module main.go require ( github.com/DataDog/zstd v1.4.0 // indirect - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 github.com/pierrec/lz4 v2.0.5+incompatible // indirect - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect ) diff --git a/_examples/kafka-to-http/producer/go.sum b/_examples/kafka-to-http/producer/go.sum index 75b1120ce..3443c8881 100644 --- a/_examples/kafka-to-http/producer/go.sum +++ b/_examples/kafka-to-http/producer/go.sum @@ -1,6 +1,3 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= @@ -8,11 +5,15 @@ github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0 github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -23,90 +24,76 @@ github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1 github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/_examples/kafka-to-http/producer/main.go b/_examples/kafka-to-http/producer/main.go index 27f539a3a..3923e9416 100644 --- a/_examples/kafka-to-http/producer/main.go +++ b/_examples/kafka-to-http/producer/main.go @@ -6,8 +6,8 @@ import ( "time" "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" ) var ( diff --git a/_examples/kafka-to-http/router/go.mod b/_examples/kafka-to-http/router/go.mod index 6208fa3ae..ae0a3bc87 100644 --- a/_examples/kafka-to-http/router/go.mod +++ b/_examples/kafka-to-http/router/go.mod @@ -2,7 +2,14 @@ module main.go require ( github.com/DataDog/zstd v1.4.0 // indirect - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-http v0.0.0-20190623210314-f363bf68c852 + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect github.com/pierrec/lz4 v2.0.5+incompatible // indirect - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect + golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5 // indirect + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect + golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b // indirect + golang.org/x/text v0.3.2 // indirect + golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c // indirect ) diff --git a/_examples/kafka-to-http/router/go.sum b/_examples/kafka-to-http/router/go.sum index 1dcd1886d..5d0fdc8ac 100644 --- a/_examples/kafka-to-http/router/go.sum +++ b/_examples/kafka-to-http/router/go.sum @@ -1,6 +1,8 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= @@ -8,10 +10,22 @@ github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0 github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190622135636-f82eaeea68ee/go.mod h1:+tyEaAfubnVYeYspHY9+Dc6yscxa5rNZsAuljyaN7PA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-http v0.0.0-20190623210314-f363bf68c852 h1:gMwpN6KsMDRE07fQupyKv5CPlUOm/2dcOidSvuZrDlo= +github.com/ThreeDotsLabs/watermill-http v0.0.0-20190623210314-f363bf68c852/go.mod h1:dZ5UIAB093MazxrG0AJq9TmrLmP2xpi+SlcELrgrqBo= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= +github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= +github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -24,90 +38,163 @@ github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible h1:maB6vn6FqCxrpz4FqWdh4+lwpyZIQS7YEAUcHlgXVRs= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-hclog v0.9.1/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= +github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= +github.com/hashicorp/go-msgpack v0.5.5/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= +github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/hashicorp/raft v1.1.0/go.mod h1:4Ak7FSPnuvmb0GV6vgIAJ4vYT4bek9bb6Q+7HVbyzqM= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/nats-io/jwt v0.2.6/go.mod h1:mQxQ0uHQ9FhEVPIcTSKwx2lqZEpXWWcCgA7R6NrWvvY= +github.com/nats-io/nats-server/v2 v2.0.0/go.mod h1:RyVdsHHvY4B6c9pWG+uRLpZ0h0XsqiuKp2XCTurP5LI= +github.com/nats-io/nats-streaming-server v0.15.1/go.mod h1:bJ1+2CS8MqvkGfr/NwnCF+Lw6aLnL3F5kenM8bZmdCw= +github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/nats-io/stan.go v0.4.5/go.mod h1:Ji7mK6gRZJSH1nc3ZJH6vi7zn/QnZhpR9Arm4iuzsUQ= +github.com/nats-io/stan.go v0.5.0/go.mod h1:dYqB+vMN3C2F9pT1FRQpg9eHbjPj6mP0yYuyBNuXHZE= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.4/go.mod h1:oCXIBxdI62A4cR6aTRJCgetEjecSIYzOEaeAn4iYEpM= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= +go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= +golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/_examples/kafka-to-http/router/main.go b/_examples/kafka-to-http/router/main.go index 699747adf..2eaba3d4b 100644 --- a/_examples/kafka-to-http/router/main.go +++ b/_examples/kafka-to-http/router/main.go @@ -2,9 +2,9 @@ package main import ( "github.com/ThreeDotsLabs/watermill" + watermill_http "github.com/ThreeDotsLabs/watermill-http/pkg/http" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/ThreeDotsLabs/watermill/message" - watermill_http "github.com/ThreeDotsLabs/watermill/message/infrastructure/http" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" "github.com/ThreeDotsLabs/watermill/message/router/plugin" ) diff --git a/_examples/metrics/go.mod b/_examples/metrics/go.mod index 00671bbbe..91fb8e462 100644 --- a/_examples/metrics/go.mod +++ b/_examples/metrics/go.mod @@ -1,11 +1,10 @@ module main.go require ( - github.com/ThreeDotsLabs/watermill v0.4.0 - github.com/beorn7/perks v1.0.0 // indirect - github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect - github.com/prometheus/common v0.4.0 // indirect - github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084 // indirect + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/cenkalti/backoff v2.2.0+incompatible // indirect + github.com/prometheus/common v0.6.0 // indirect + golang.org/x/sys v0.0.0-20190621203818-d432491b9138 // indirect ) // uncomment to use local sources diff --git a/_examples/metrics/go.sum b/_examples/metrics/go.sum index 456960892..6fec5701c 100644 --- a/_examples/metrics/go.sum +++ b/_examples/metrics/go.sum @@ -1,11 +1,5 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 h1:xJ4a3vCFaGF/jqvzLMYoU8P317H5OQ+Via4RmuPwCS0= @@ -13,38 +7,30 @@ github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24 github.com/beorn7/perks v1.0.0 h1:HWo1m869IqiPhD389kmkxeTalrjNbbJTC8LXupb+sl0= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0 h1:1NtRmCAqadE2FN4ZcN6g90TP3uk8cg9rn9eNK2197aU= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible h1:maB6vn6FqCxrpz4FqWdh4+lwpyZIQS7YEAUcHlgXVRs= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= @@ -52,94 +38,52 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxv github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.2 h1:awm861/B8OKDd2I/6o1dy3ra4BamzKhYOiGItCeZ740= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v1.0.0 h1:vrDKnkGzuGvhNAL56c7DBz29ZL+KxnoR0x7enabFceM= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 h1:idejC8f05m9MGOsuEi1ATq9shN03HrxNkD/luQvxCv8= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 h1:S/YWwWx/RA8rT8tKFRuGUZhuA90OyIBpPCXkcbwU8DE= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275 h1:PnBWHBf+6L0jOqq0gIVUe6Yk0/QMZ640k6NvkxcBf+8= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.4.0 h1:7etb9YClo3a6HjLzfl6rIQaU+FDfi0VSX39io3aQ+DM= -github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/common v0.6.0 h1:kRhiuYSXR3+uv2IbVbZhUxK5zVD/2pp3Gd2PpvPkpEo= +github.com/prometheus/common v0.6.0/go.mod h1:eBmuwkDJBwy6iBfxCBob6t6dR6ENT/y+J+Zk0j9GMYc= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a h1:9a8MnZMP0X2nLJdBg+pBmGgkJlSaKC2KaQmTCk1XDtE= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084 h1:sofwID9zm4tzrgykg80hfFph1mryUeLRsUfoocVVmRY= -github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/procfs v0.0.2 h1:6LJUbpNm42llc4HRCuvApCSWB/WfhuNo9K98Q9sNGfs= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20190613194153-d28f0bde5980/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 h1:YUO/7uOKsKeq9UokNS62b8FYywz3ker1l1vDZRCRefw= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138 h1:t8BZD9RDjkm9/h7yYN6kE8oaeov5r9aztkB7zKA5Tkg= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/_examples/simple-app/publishing-app/go.mod b/_examples/simple-app/publishing-app/go.mod index 138688989..510e20d14 100644 --- a/_examples/simple-app/publishing-app/go.mod +++ b/_examples/simple-app/publishing-app/go.mod @@ -2,8 +2,10 @@ module main.go require ( github.com/DataDog/zstd v1.4.0 // indirect - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect github.com/pierrec/lz4 v2.0.5+incompatible // indirect github.com/renstrom/shortuuid v3.0.0+incompatible - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect ) diff --git a/_examples/simple-app/publishing-app/go.sum b/_examples/simple-app/publishing-app/go.sum index 75b1120ce..bccada24d 100644 --- a/_examples/simple-app/publishing-app/go.sum +++ b/_examples/simple-app/publishing-app/go.sum @@ -1,6 +1,3 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= @@ -8,11 +5,17 @@ github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0 github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -23,90 +26,76 @@ github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1 github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/_examples/simple-app/publishing-app/main.go b/_examples/simple-app/publishing-app/main.go index 52218fc21..0113103b5 100644 --- a/_examples/simple-app/publishing-app/main.go +++ b/_examples/simple-app/publishing-app/main.go @@ -7,8 +7,8 @@ import ( "time" "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" "github.com/ThreeDotsLabs/watermill/message/router/middleware" "github.com/renstrom/shortuuid" ) diff --git a/_examples/simple-app/subscribing-app/go.mod b/_examples/simple-app/subscribing-app/go.mod index 608c139a4..b49b84d80 100644 --- a/_examples/simple-app/subscribing-app/go.mod +++ b/_examples/simple-app/subscribing-app/go.mod @@ -2,8 +2,10 @@ module main.go require ( github.com/DataDog/zstd v1.4.0 // indirect - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect github.com/pierrec/lz4 v2.0.5+incompatible // indirect github.com/pkg/errors v0.8.1 - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect ) diff --git a/_examples/simple-app/subscribing-app/go.sum b/_examples/simple-app/subscribing-app/go.sum index 1bbfdc251..d8eda633a 100644 --- a/_examples/simple-app/subscribing-app/go.sum +++ b/_examples/simple-app/subscribing-app/go.sum @@ -1,6 +1,3 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= @@ -8,12 +5,18 @@ github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0 github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 h1:xJ4a3vCFaGF/jqvzLMYoU8P317H5OQ+Via4RmuPwCS0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -24,96 +27,79 @@ github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1 github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2 h1:awm861/B8OKDd2I/6o1dy3ra4BamzKhYOiGItCeZ740= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 h1:idejC8f05m9MGOsuEi1ATq9shN03HrxNkD/luQvxCv8= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275 h1:PnBWHBf+6L0jOqq0gIVUe6Yk0/QMZ640k6NvkxcBf+8= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a h1:9a8MnZMP0X2nLJdBg+pBmGgkJlSaKC2KaQmTCk1XDtE= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/_examples/simple-app/subscribing-app/main.go b/_examples/simple-app/subscribing-app/main.go index 13928b4ac..8a4dc78ab 100644 --- a/_examples/simple-app/subscribing-app/main.go +++ b/_examples/simple-app/subscribing-app/main.go @@ -9,8 +9,8 @@ import ( "github.com/pkg/errors" "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" "github.com/ThreeDotsLabs/watermill/message/router/middleware" "github.com/ThreeDotsLabs/watermill/message/router/plugin" ) diff --git a/_examples/your-first-app/go.mod b/_examples/your-first-app/go.mod index 6208fa3ae..160138b64 100644 --- a/_examples/your-first-app/go.mod +++ b/_examples/your-first-app/go.mod @@ -2,7 +2,9 @@ module main.go require ( github.com/DataDog/zstd v1.4.0 // indirect - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect github.com/pierrec/lz4 v2.0.5+incompatible // indirect - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect ) diff --git a/_examples/your-first-app/go.sum b/_examples/your-first-app/go.sum index 75b1120ce..bccada24d 100644 --- a/_examples/your-first-app/go.sum +++ b/_examples/your-first-app/go.sum @@ -1,6 +1,3 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= @@ -8,11 +5,17 @@ github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0 github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -23,90 +26,76 @@ github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1 github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/_examples/your-first-app/main.go b/_examples/your-first-app/main.go index 5a4c72bd1..51a5de6ff 100644 --- a/_examples/your-first-app/main.go +++ b/_examples/your-first-app/main.go @@ -6,8 +6,8 @@ import ( "time" "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" "github.com/ThreeDotsLabs/watermill/message/router/middleware" "github.com/ThreeDotsLabs/watermill/message/router/plugin" ) diff --git a/dev/consolidate-gomods/main.go b/dev/consolidate-gomods/main.go new file mode 100644 index 000000000..c23342d9a --- /dev/null +++ b/dev/consolidate-gomods/main.go @@ -0,0 +1,82 @@ +package main + +import ( + "bufio" + "fmt" + "os" + "path/filepath" + "strings" +) + +// simple script to consolidate all gomods to one gomod +// required for GolangCI linter +func main() { + bigFatGomod := "" + + for _, fileName := range getGomods() { + dir := filepath.Dir(fileName) + if dir == "." { + continue + } + + file, err := os.Open(fileName) + if err != nil { + panic(err) + } + + fileMod := "" + + scanner := bufio.NewScanner(file) + for scanner.Scan() { + txt := scanner.Text() + if strings.HasPrefix(txt, "go ") { + continue + } + if strings.HasPrefix(txt, "module ") { + continue + } + + fileMod += txt + "\n" + } + + if err := scanner.Err(); err != nil { + panic(err) + } + + if fileMod != "" { + bigFatGomod += "// " + fileName + "\n" + bigFatGomod += fileMod + "\n" + } + + _ = file.Close() + + // gomod is stupid, and go vendor removes all deps that are not needed + // (and they are not needed if they are already meet in sub go.mods) + if err := os.Remove(fileName); err != nil { + panic(err) + } + } + + fmt.Println(bigFatGomod) +} + +func getGomods() []string { + var fileList []string + + err := filepath.Walk(".", func(path string, f os.FileInfo, err error) error { + if strings.Contains(path, "/vendor/") { + return nil + } + + if strings.Contains(path, "go.mod") { + fileList = append(fileList, path) + } + return nil + }) + + if err != nil { + panic(err) + } + + return fileList +} diff --git a/docs/content/docs/getting-started/amqp/go.mod b/docs/content/docs/getting-started/amqp/go.mod index 2e594ffbe..68ab4bf8c 100644 --- a/docs/content/docs/getting-started/amqp/go.mod +++ b/docs/content/docs/getting-started/amqp/go.mod @@ -1,3 +1,7 @@ module main.go -require github.com/ThreeDotsLabs/watermill v0.4.0 +require ( + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect +) diff --git a/docs/content/docs/getting-started/amqp/go.sum b/docs/content/docs/getting-started/amqp/go.sum index 0a05b68c6..0c0c908b5 100644 --- a/docs/content/docs/getting-started/amqp/go.sum +++ b/docs/content/docs/getting-started/amqp/go.sum @@ -1,101 +1,73 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 h1:kP2LSLaxa0lAfnKbLFImmv2q93v++wt6S4/mOoBWABE= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25/go.mod h1:oQQihB/EEkroQWalJCTrdpquz4bxQEP58VfuTR/fMiQ= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible h1:tKJnvO2kl0zmb/jA5UKAt4VoEVw1qxKWjE/Bpp46npY= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 h1:0ngsPmuP6XIjiFRNFYlvKwSr5zff2v+uPHaffZ6/M4k= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/docs/content/docs/getting-started/amqp/main.go b/docs/content/docs/getting-started/amqp/main.go index c7d6c9426..b1df12838 100644 --- a/docs/content/docs/getting-started/amqp/main.go +++ b/docs/content/docs/getting-started/amqp/main.go @@ -7,8 +7,8 @@ import ( "time" "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-amqp/pkg/amqp" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/amqp" ) var amqpURI = "amqp://guest:guest@rabbitmq:5672/" diff --git a/docs/content/docs/getting-started/go-channel/go.mod b/docs/content/docs/getting-started/go-channel/go.mod index 2e594ffbe..be4234458 100644 --- a/docs/content/docs/getting-started/go-channel/go.mod +++ b/docs/content/docs/getting-started/go-channel/go.mod @@ -1,3 +1,3 @@ module main.go -require github.com/ThreeDotsLabs/watermill v0.4.0 +require github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b diff --git a/docs/content/docs/getting-started/go-channel/go.sum b/docs/content/docs/getting-started/go-channel/go.sum index b9c4de0da..bf975213d 100644 --- a/docs/content/docs/getting-started/go-channel/go.sum +++ b/docs/content/docs/getting-started/go-channel/go.sum @@ -1,99 +1,66 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/docs/content/docs/getting-started/googlecloud/go.mod b/docs/content/docs/getting-started/googlecloud/go.mod index 8d2dc39b2..b3b5f26b5 100644 --- a/docs/content/docs/getting-started/googlecloud/go.mod +++ b/docs/content/docs/getting-started/googlecloud/go.mod @@ -2,14 +2,10 @@ module main.go require ( cloud.google.com/go v0.39.0 // indirect - github.com/ThreeDotsLabs/watermill v0.4.0 - github.com/google/go-cmp v0.3.0 // indirect - github.com/hashicorp/golang-lru v0.5.1 // indirect - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect - golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a // indirect - golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect - golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f // indirect - golang.org/x/text v0.3.2 // indirect + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-googlecloud v0.0.0-20190623204145-a5fb8c7d4a48 + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect + golang.org/x/sys v0.0.0-20190621203818-d432491b9138 // indirect google.golang.org/appengine v1.6.0 // indirect google.golang.org/genproto v0.0.0-20190513181449-d00d292a067c // indirect ) diff --git a/docs/content/docs/getting-started/googlecloud/go.sum b/docs/content/docs/getting-started/googlecloud/go.sum index 21f0c272f..4b7fa45a3 100644 --- a/docs/content/docs/getting-started/googlecloud/go.sum +++ b/docs/content/docs/getting-started/googlecloud/go.sum @@ -1,24 +1,28 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0 h1:eOI3/cP2VTU6uZLDYAoic+eyzzB9YyGmJ7eIjl8rOPg= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= cloud.google.com/go v0.39.0 h1:UgQP9na6OTfp4dsAiz/eFpFA1C6tPdH5wiRdi19tuMw= cloud.google.com/go v0.39.0/go.mod h1:rVLT6fkc8chs9sfPtFc1SBH6em7n+ZoXaG+87tDISts= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-googlecloud v0.0.0-20190623204145-a5fb8c7d4a48 h1:xxA5eN7knd5/YAUYifUR3TcJpscyvWcQE8YZOiCOPQ4= +github.com/ThreeDotsLabs/watermill-googlecloud v0.0.0-20190623204145-a5fb8c7d4a48/go.mod h1:soxbTw5OkGhVVNX2ykaw16sfaXhihtTAYH4Z7leyTSw= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= @@ -28,7 +32,6 @@ github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0 h1:+dTQ8DZQJz0Mb/HjFlkptS1FeQ4cWSnN941F8aEG4SQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= @@ -47,60 +50,62 @@ github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHh github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2 h1:+qM7QpgXnvDDixitZtQUBDY9w/s9mu1ghS+JIbsrx6M= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= go.opencensus.io v0.21.0 h1:mU6zScU4U1YAFPHEHYk+3JC4SY7JxgkqS10ZOSyksNg= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9 h1:mKdxBk7AujPs8kU4m80U72y/zjbZ3UcXC7dClwKbUI0= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a h1:tImsplftrFpALCYumobsd0K86vlAs/eXGFms2txfJfA= -golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f h1:Bl/8QSvNqXvPGPGXa2z5xUTmV7VDcZyvRZ+QQXkXTZQ= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -110,10 +115,12 @@ golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f h1:Xab8gg26GrI/x3RNdVhVkHHM1XLyGeRBEvz4Q5x4YW8= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138 h1:t8BZD9RDjkm9/h7yYN6kE8oaeov5r9aztkB7zKA5Tkg= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2 h1:z99zHgr7hKfrUcX/KsoJk5FJfjTceCKIp96+biqP4To= @@ -127,14 +134,21 @@ golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGm golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.5.0 h1:lj9SyhMzyoa38fgFF0oO2T6pjs5IzkLPKfVtxpyCRMM= google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.6.0 h1:2tJEkRfnZL5g1GeBUlITh/rqT5HG3sFcoVCUUxmgJ2g= +google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.0 h1:Tfd7cKwKbFRsI8RMAD3oqqw7JPFRrvFlOsfbgVkjOOw= google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190508193815-b515fa19cec8 h1:x913Lq/RebkvUmRSdQ8MNb0GZKn+SR1ESfoetcQSeak= google.golang.org/genproto v0.0.0-20190508193815-b515fa19cec8/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190513181449-d00d292a067c h1:m9avZ3wyOWBR0fLC+qWbMBulk+Jiiqelngssgp8jfIs= @@ -142,5 +156,11 @@ google.golang.org/genproto v0.0.0-20190513181449-d00d292a067c/go.mod h1:z3L6/3dT google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1 h1:Hz2g2wirWK7H0qIIhGIqRGTuMwTE8HEKFnDZZ7lm9NU= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.1 h1:j6XxA85m/6txkUCHvzlV5f+HBNl/1r5cZ2A/3IEFOO8= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/docs/content/docs/getting-started/googlecloud/main.go b/docs/content/docs/getting-started/googlecloud/main.go index 5a6c58bc5..033eae965 100644 --- a/docs/content/docs/getting-started/googlecloud/main.go +++ b/docs/content/docs/getting-started/googlecloud/main.go @@ -7,8 +7,8 @@ import ( "time" "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-googlecloud/pkg/googlecloud" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/googlecloud" ) func main() { diff --git a/docs/content/docs/getting-started/kafka/go.mod b/docs/content/docs/getting-started/kafka/go.mod index f67b7c622..f3fe89f86 100644 --- a/docs/content/docs/getting-started/kafka/go.mod +++ b/docs/content/docs/getting-started/kafka/go.mod @@ -3,7 +3,8 @@ module main.go require ( github.com/DataDog/zstd v1.4.0 // indirect github.com/Shopify/sarama v1.22.1 - github.com/ThreeDotsLabs/watermill v0.4.0 + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 github.com/pierrec/lz4 v2.0.5+incompatible // indirect - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect ) diff --git a/docs/content/docs/getting-started/kafka/go.sum b/docs/content/docs/getting-started/kafka/go.sum index 75b1120ce..3443c8881 100644 --- a/docs/content/docs/getting-started/kafka/go.sum +++ b/docs/content/docs/getting-started/kafka/go.sum @@ -1,6 +1,3 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= @@ -8,11 +5,15 @@ github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0 github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -23,90 +24,76 @@ github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1 github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/docs/content/docs/getting-started/kafka/main.go b/docs/content/docs/getting-started/kafka/main.go index 7ef4465ca..7bd272bff 100644 --- a/docs/content/docs/getting-started/kafka/main.go +++ b/docs/content/docs/getting-started/kafka/main.go @@ -10,8 +10,8 @@ import ( "github.com/ThreeDotsLabs/watermill" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" ) func main() { diff --git a/docs/content/docs/getting-started/nats-streaming/go.mod b/docs/content/docs/getting-started/nats-streaming/go.mod index c065e55f8..11edb095c 100644 --- a/docs/content/docs/getting-started/nats-streaming/go.mod +++ b/docs/content/docs/getting-started/nats-streaming/go.mod @@ -1,27 +1,15 @@ module main.go require ( - github.com/ThreeDotsLabs/watermill v0.4.0 - github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect - github.com/boltdb/bolt v1.3.1 // indirect - github.com/go-sql-driver/mysql v1.4.1 // indirect - github.com/hashicorp/go-immutable-radix v1.0.0 // indirect - github.com/hashicorp/go-msgpack v0.0.0-20150518234257-fa3f63826f7c // indirect + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-nats v0.0.0-20190623210339-657e043d1874 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect github.com/hashicorp/golang-lru v0.5.1 // indirect - github.com/hashicorp/raft v1.0.0 // indirect - github.com/kr/pretty v0.1.0 // indirect - github.com/lib/pq v1.0.0 // indirect - github.com/nats-io/gnatsd v1.3.0 // indirect - github.com/nats-io/nats-server v1.4.1 // indirect - github.com/nats-io/nats-streaming-server v0.11.2 // indirect - github.com/nats-io/stan.go v0.4.4 - github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c // indirect - golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f // indirect - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect - golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f // indirect - google.golang.org/appengine v1.6.0 // indirect - gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect - gopkg.in/vmihailenco/msgpack.v2 v2.9.1 // indirect - labix.org/v2/mgo v0.0.0-20140701140051-000000000287 // indirect - launchpad.net/gocheck v0.0.0-20140225173054-000000000087 // indirect + github.com/nats-io/nats-streaming-server v0.15.1 // indirect + github.com/nats-io/stan.go v0.5.0 + golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4 // indirect + golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c // indirect + golang.org/x/sys v0.0.0-20190621203818-d432491b9138 // indirect + golang.org/x/text v0.3.2 // indirect + golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c // indirect ) diff --git a/docs/content/docs/getting-started/nats-streaming/go.sum b/docs/content/docs/getting-started/nats-streaming/go.sum index 00fef8233..ddcdd6ae1 100644 --- a/docs/content/docs/getting-started/nats-streaming/go.sum +++ b/docs/content/docs/getting-started/nats-streaming/go.sum @@ -1,17 +1,26 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= +cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= +github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da h1:8GUt8eRujhVEGZFFEjBj46YV4rDjvGrNxb0KMWYkL2I= -github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da/go.mod h1:Q73ZrmVTwzkszR9V5SSuryQ31EELlFMUz1kKyl939pY= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190622135636-f82eaeea68ee/go.mod h1:+tyEaAfubnVYeYspHY9+Dc6yscxa5rNZsAuljyaN7PA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-nats v0.0.0-20190623210339-657e043d1874 h1:gY9q0vRndVSvEzQynuywg4Rvo05zvgigCrZIQwAM5ok= +github.com/ThreeDotsLabs/watermill-nats v0.0.0-20190623210339-657e043d1874/go.mod h1:RXBd66RsWBCI/oa09IZUix8cGn64gLz1mJaK3yMLLcc= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 h1:EFSB7Zo9Eg91v7MJPVsifUysc/wPdN+NOnVe6bWbdBM= +github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= -github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4= -github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= +github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= +github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= @@ -20,137 +29,183 @@ github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5m github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= github.com/go-sql-driver/mysql v1.4.1 h1:g24URVg0OFbNUTx9qqY1IRZ9D9z3iPyi5zKhQZpNwpA= github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= +github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= +github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= +github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= +github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= +github.com/hashicorp/go-hclog v0.9.1 h1:9PZfAcVEvez4yhLH2TBU64/h/z4xlFI80cWXRrxuKuM= +github.com/hashicorp/go-hclog v0.9.1/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= github.com/hashicorp/go-immutable-radix v1.0.0 h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxBjXVn/J/3+z5/0= github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-msgpack v0.0.0-20150518234257-fa3f63826f7c h1:BTAbnbegUIMB6xmQCwWE8yRzbA4XSpnZY5hvRJC188I= -github.com/hashicorp/go-msgpack v0.0.0-20150518234257-fa3f63826f7c/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= +github.com/hashicorp/go-msgpack v0.5.5 h1:i9R9JSrqIz0QVLz3sz+i3YJdT7TTSLcfLLzJi9aZTuI= +github.com/hashicorp/go-msgpack v0.5.5/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= github.com/hashicorp/go-uuid v1.0.0 h1:RS8zrF7PhGwyNPOtxSClXXj9HA8feRnJzgnI1RJCSnM= github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/raft v1.0.0 h1:htBVktAOtGs4Le5Z7K8SF5H2+oWsQFYVmOgH5loro7Y= -github.com/hashicorp/raft v1.0.0/go.mod h1:DVSAWItjLjTOkVbSpWQ0j0kUADIvDaCtBxIcbNAQLkI= +github.com/hashicorp/raft v1.1.0 h1:qPMePEczgbkiQsqCsRfuHRqvDUO+zmAInDaD5ptXlq0= +github.com/hashicorp/raft v1.1.0/go.mod h1:4Ak7FSPnuvmb0GV6vgIAJ4vYT4bek9bb6Q+7HVbyzqM= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= -github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= -github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= -github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= -github.com/lib/pq v1.0.0 h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A= -github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/lib/pq v1.1.1 h1:sJZmqHoEaY7f+NPP8pgLB/WxulyR3fewgCM2qaSlBb4= +github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/gnatsd v1.3.0 h1:+5d80klu3QaJgNbdavVBjWJP7cHd11U2CLnRTFM9ICI= -github.com/nats-io/gnatsd v1.3.0/go.mod h1:nqco77VO78hLCJpIcVfygDP2rPGfsEHkGTUk94uh5DQ= -github.com/nats-io/go-nats v1.7.2 h1:cJujlwCYR8iMz5ofZSD/p2WLW8FabhkQ2lIEVbSvNSA= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4 h1:1I3lkZDRdQYXb+holjdqZ2J6xyekrD06o9Fd8rWlgP4= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nats-server v1.4.1 h1:Ul1oSOGNV/L8kjr4v6l2f9Yet6WY+LevH1/7cRZ/qyA= -github.com/nats-io/nats-server v1.4.1/go.mod h1:c8f/fHd2B6Hgms3LtCaI7y6pC4WD1f4SUxcCud5vhBc= -github.com/nats-io/nats-streaming-server v0.11.2 h1:UCqZbfXUKs9Ejw7KiNaFZEbbiVbK7uA8jbK2TsdGbqg= -github.com/nats-io/nats-streaming-server v0.11.2/go.mod h1:RyqtDJZvMZO66YmyjIYdIvS69zu/wDAkyNWa8PIUa5c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/nats-io/jwt v0.2.6 h1:eAyoYvGgGLXR2EpnsBUvi/FcFrBqN6YKFVbOoEfPN4k= +github.com/nats-io/jwt v0.2.6/go.mod h1:mQxQ0uHQ9FhEVPIcTSKwx2lqZEpXWWcCgA7R6NrWvvY= +github.com/nats-io/nats-server/v2 v2.0.0 h1:rbFV7gfUPErVdKImVMOlW8Qb1V22nlcpqup5cb9rYa8= +github.com/nats-io/nats-server/v2 v2.0.0/go.mod h1:RyVdsHHvY4B6c9pWG+uRLpZ0h0XsqiuKp2XCTurP5LI= +github.com/nats-io/nats-streaming-server v0.15.1 h1:NLQg18mp68e17v+RJpXyPdA7ZH4osFEZQzV3tdxT6/M= +github.com/nats-io/nats-streaming-server v0.15.1/go.mod h1:bJ1+2CS8MqvkGfr/NwnCF+Lw6aLnL3F5kenM8bZmdCw= +github.com/nats-io/nats.go v1.8.1 h1:6lF/f1/NN6kzUDBz6pyvQDEXO39jqXcWRLu/tKjtOUQ= +github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= github.com/nats-io/nkeys v0.0.2 h1:+qM7QpgXnvDDixitZtQUBDY9w/s9mu1ghS+JIbsrx6M= github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw= github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/nats-io/stan.go v0.4.4 h1:A11Fv2Gqap21tz76BL+N26EyNdZNNmmyr5s0ZpApwOU= -github.com/nats-io/stan.go v0.4.4/go.mod h1:Ji7mK6gRZJSH1nc3ZJH6vi7zn/QnZhpR9Arm4iuzsUQ= +github.com/nats-io/stan.go v0.4.5/go.mod h1:Ji7mK6gRZJSH1nc3ZJH6vi7zn/QnZhpR9Arm4iuzsUQ= +github.com/nats-io/stan.go v0.5.0 h1:ZaSPMb6jnDXsSlOACynJrUiB3Evleg3ZyyX+rnf3TlQ= +github.com/nats-io/stan.go v0.5.0/go.mod h1:dYqB+vMN3C2F9pT1FRQpg9eHbjPj6mP0yYuyBNuXHZE= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c h1:Lgl0gzECD8GnQ5QCWA8o6BtfL6mDH5rQgM4/fX3avOs= -github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= +github.com/pascaldekloe/goe v0.1.0 h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY= +github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.4/go.mod h1:oCXIBxdI62A4cR6aTRJCgetEjecSIYzOEaeAn4iYEpM= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2 h1:6LJUbpNm42llc4HRCuvApCSWB/WfhuNo9K98Q9sNGfs= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= +go.etcd.io/bbolt v1.3.2 h1:Z/90sZLPOeCy2PwprqkFa25PdkusRzaj9P8zm/KNyvk= +go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9 h1:mKdxBk7AujPs8kU4m80U72y/zjbZ3UcXC7dClwKbUI0= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f h1:R423Cnkcp5JABoeemiGEPlt9tHXFfw5kvc0yqlxRPWo= -golang.org/x/crypto v0.0.0-20190513172903-22d7a77e9e5f/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= +golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4 h1:ydJNl0ENAG67pFbB+9tfhiL2pYqLhfoaZFw/cjLhY4A= +golang.org/x/crypto v0.0.0-20190621222207-cc06ce4a13d4/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= +golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= +golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f h1:Xab8gg26GrI/x3RNdVhVkHHM1XLyGeRBEvz4Q5x4YW8= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138 h1:t8BZD9RDjkm9/h7yYN6kE8oaeov5r9aztkB7zKA5Tkg= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= +google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= +google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.6.0 h1:Tfd7cKwKbFRsI8RMAD3oqqw7JPFRrvFlOsfbgVkjOOw= google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= -gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/vmihailenco/msgpack.v2 v2.9.1 h1:kb0VV7NuIojvRfzwslQeP3yArBqJHW9tOl4t38VS1jM= -gopkg.in/vmihailenco/msgpack.v2 v2.9.1/go.mod h1:/3Dn1Npt9+MYyLpYYXjInO/5jvMLamn+AEGwNEOatn8= +google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -labix.org/v2/mgo v0.0.0-20140701140051-000000000287 h1:L0cnkNl4TfAXzvdrqsYEmxOHOCv2p5I3taaReO8BWFs= -labix.org/v2/mgo v0.0.0-20140701140051-000000000287/go.mod h1:Lg7AYkt1uXJoR9oeSZ3W/8IXLdvOfIITgZnommstyz4= -launchpad.net/gocheck v0.0.0-20140225173054-000000000087 h1:Izowp2XBH6Ya6rv+hqbceQyw/gSGoXfH/UPoTGduL54= -launchpad.net/gocheck v0.0.0-20140225173054-000000000087/go.mod h1:hj7XX3B/0A+80Vse0e+BUHsHMTEhd0O4cpUHr/e/BUM= +honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/docs/content/docs/getting-started/nats-streaming/main.go b/docs/content/docs/getting-started/nats-streaming/main.go index 3973abfc9..375459c04 100644 --- a/docs/content/docs/getting-started/nats-streaming/main.go +++ b/docs/content/docs/getting-started/nats-streaming/main.go @@ -9,7 +9,7 @@ import ( stan "github.com/nats-io/stan.go" "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/nats" + "github.com/ThreeDotsLabs/watermill-nats/pkg/nats" "github.com/ThreeDotsLabs/watermill/message" ) diff --git a/docs/content/docs/getting-started/router/go.mod b/docs/content/docs/getting-started/router/go.mod index 2e594ffbe..6aaf81490 100644 --- a/docs/content/docs/getting-started/router/go.mod +++ b/docs/content/docs/getting-started/router/go.mod @@ -1,3 +1,6 @@ module main.go -require github.com/ThreeDotsLabs/watermill v0.4.0 +require ( + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/cenkalti/backoff v2.2.0+incompatible // indirect +) diff --git a/docs/content/docs/getting-started/router/go.sum b/docs/content/docs/getting-started/router/go.sum index 80ee6dccd..874cbf480 100644 --- a/docs/content/docs/getting-started/router/go.sum +++ b/docs/content/docs/getting-started/router/go.sum @@ -1,100 +1,68 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/docs/content/docs/message/go.mod b/docs/content/docs/message/go.mod index 4921f6c78..d8449aac8 100644 --- a/docs/content/docs/message/go.mod +++ b/docs/content/docs/message/go.mod @@ -1,3 +1,3 @@ module receiving-ack.go -require github.com/ThreeDotsLabs/watermill v0.4.0 +require github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b diff --git a/docs/content/docs/message/go.sum b/docs/content/docs/message/go.sum index b9c4de0da..bf975213d 100644 --- a/docs/content/docs/message/go.sum +++ b/docs/content/docs/message/go.sum @@ -1,99 +1,66 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/docs/content/docs/snippets/amqp-consumer-groups/go.mod b/docs/content/docs/snippets/amqp-consumer-groups/go.mod index 2e594ffbe..68ab4bf8c 100644 --- a/docs/content/docs/snippets/amqp-consumer-groups/go.mod +++ b/docs/content/docs/snippets/amqp-consumer-groups/go.mod @@ -1,3 +1,7 @@ module main.go -require github.com/ThreeDotsLabs/watermill v0.4.0 +require ( + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect +) diff --git a/docs/content/docs/snippets/amqp-consumer-groups/go.sum b/docs/content/docs/snippets/amqp-consumer-groups/go.sum index 0a05b68c6..0c0c908b5 100644 --- a/docs/content/docs/snippets/amqp-consumer-groups/go.sum +++ b/docs/content/docs/snippets/amqp-consumer-groups/go.sum @@ -1,101 +1,73 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 h1:kP2LSLaxa0lAfnKbLFImmv2q93v++wt6S4/mOoBWABE= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25/go.mod h1:oQQihB/EEkroQWalJCTrdpquz4bxQEP58VfuTR/fMiQ= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.1.1+incompatible h1:tKJnvO2kl0zmb/jA5UKAt4VoEVw1qxKWjE/Bpp46npY= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= +github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 h1:0ngsPmuP6XIjiFRNFYlvKwSr5zff2v+uPHaffZ6/M4k= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/docs/content/docs/snippets/amqp-consumer-groups/main.go b/docs/content/docs/snippets/amqp-consumer-groups/main.go index 8dbe86102..fa2052477 100644 --- a/docs/content/docs/snippets/amqp-consumer-groups/main.go +++ b/docs/content/docs/snippets/amqp-consumer-groups/main.go @@ -4,7 +4,7 @@ import ( "context" "log" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/amqp" + "github.com/ThreeDotsLabs/watermill-amqp/pkg/amqp" "github.com/ThreeDotsLabs/watermill" diff --git a/docs/content/docs/snippets/tail-log-file/go.mod b/docs/content/docs/snippets/tail-log-file/go.mod new file mode 100644 index 000000000..ae79622ad --- /dev/null +++ b/docs/content/docs/snippets/tail-log-file/go.mod @@ -0,0 +1,8 @@ +module github.com/ThreeDotsLabs/watermill/docs/content/docs/snippets/tail-log-file + +go 1.12 + +require ( + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-io v0.0.0-20190623204148-71d2243ef0c0 +) diff --git a/docs/content/docs/snippets/tail-log-file/go.sum b/docs/content/docs/snippets/tail-log-file/go.sum new file mode 100644 index 000000000..8d3296ed3 --- /dev/null +++ b/docs/content/docs/snippets/tail-log-file/go.sum @@ -0,0 +1,68 @@ +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-io v0.0.0-20190623204148-71d2243ef0c0 h1:O3iI7pYo8HnmsF0pN/q3SkObmgqGzgV7jDDAm7FYvOI= +github.com/ThreeDotsLabs/watermill-io v0.0.0-20190623204148-71d2243ef0c0/go.mod h1:wNj4+yK3k1ZXhrAiLLRMKS9Fcx/uFEysMHw2dZjqmDo= +github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= +github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= +github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= +github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= +github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= +github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= +github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= +github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= +github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= +github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= +github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= +github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= +github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= +github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= +github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= +github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= +github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= +github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= +github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= +github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= +github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= +github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= +github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= +github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= +github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= +github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= +github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= +github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= +github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= +github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= +github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= +github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= +github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= +github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= +github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= +golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/docs/content/docs/snippets/tail-log-file/main.go b/docs/content/docs/snippets/tail-log-file/main.go index 737ea40ab..1b2837bfe 100644 --- a/docs/content/docs/snippets/tail-log-file/main.go +++ b/docs/content/docs/snippets/tail-log-file/main.go @@ -5,8 +5,8 @@ import ( "fmt" "os" + "github.com/ThreeDotsLabs/watermill-io/pkg/io" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/io" ) // this will `tail -f` a log file and publish an alert if a line fulfils some criterion @@ -28,7 +28,7 @@ func main() { sub, err := io.NewSubscriber(logFile, io.SubscriberConfig{ UnmarshalFunc: io.PayloadUnmarshalFunc, - }, nil) + }) if err != nil { panic(err) } diff --git a/go.mod b/go.mod index 164909c33..c8a90cf23 100644 --- a/go.mod +++ b/go.mod @@ -1,23 +1,14 @@ module github.com/ThreeDotsLabs/watermill require ( - cloud.google.com/go v0.38.0 - github.com/Shopify/sarama v1.22.1 github.com/cenkalti/backoff v2.2.0+incompatible github.com/go-chi/chi v4.0.2+incompatible - github.com/go-sql-driver/mysql v1.4.1 github.com/gogo/protobuf v1.2.1 - github.com/golang/protobuf v1.3.1 github.com/google/uuid v1.1.1 github.com/hashicorp/go-multierror v1.0.0 - github.com/nats-io/nats-streaming-server v0.15.1 // indirect - github.com/nats-io/stan.go v0.5.0 github.com/oklog/ulid v1.3.1 github.com/pkg/errors v0.8.1 - github.com/prometheus/client_golang v0.9.4 + github.com/prometheus/client_golang v1.0.0 github.com/renstrom/shortuuid v3.0.0+incompatible - github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 github.com/stretchr/testify v1.3.0 - google.golang.org/api v0.6.0 - google.golang.org/grpc v1.21.1 ) diff --git a/go.sum b/go.sum index 902d69c56..fadd0d824 100644 --- a/go.sum +++ b/go.sum @@ -1,232 +1,74 @@ -cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.38.0 h1:ROfEUZz+Gh5pa62DJWXSaonyu3StP6EA6lPEXPI6mCo= -cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798 h1:2T/jmrHeTezcCM58lvEQXs0UpQJCo5SoGAcg+mbSTIg= -github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0= -github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= -github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= -github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 h1:EFSB7Zo9Eg91v7MJPVsifUysc/wPdN+NOnVe6bWbdBM= -github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0 h1:HWo1m869IqiPhD389kmkxeTalrjNbbJTC8LXupb+sl0= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= -github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= -github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= -github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/eapache/go-resiliency v1.1.0 h1:1NtRmCAqadE2FN4ZcN6g90TP3uk8cg9rn9eNK2197aU= -github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw= -github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= -github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= -github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= github.com/go-chi/chi v4.0.2+incompatible h1:maB6vn6FqCxrpz4FqWdh4+lwpyZIQS7YEAUcHlgXVRs= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-sql-driver/mysql v1.4.1 h1:g24URVg0OFbNUTx9qqY1IRZ9D9z3iPyi5zKhQZpNwpA= -github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1 h1:/s5zKNz0uPFCZ5hddgPdo2TK2TVrUNMn0OOX8/aZMTE= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= -github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= -github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= -github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= -github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= -github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= -github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= -github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= -github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/gax-go/v2 v2.0.4 h1:hU4mGcQI4DaAYW+IbTun+2qEZVFxK0ySjQLTbS0VQKc= -github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-hclog v0.9.1 h1:9PZfAcVEvez4yhLH2TBU64/h/z4xlFI80cWXRrxuKuM= -github.com/hashicorp/go-hclog v0.9.1/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-immutable-radix v1.0.0 h1:AKDB1HM5PWEA7i4nhcpwOrO2byshxBjXVn/J/3+z5/0= -github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-msgpack v0.5.5 h1:i9R9JSrqIz0QVLz3sz+i3YJdT7TTSLcfLLzJi9aZTuI= -github.com/hashicorp/go-msgpack v0.5.5/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= -github.com/hashicorp/go-uuid v1.0.0 h1:RS8zrF7PhGwyNPOtxSClXXj9HA8feRnJzgnI1RJCSnM= -github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= -github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU= -github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= -github.com/hashicorp/raft v1.1.0 h1:qPMePEczgbkiQsqCsRfuHRqvDUO+zmAInDaD5ptXlq0= -github.com/hashicorp/raft v1.1.0/go.mod h1:4Ak7FSPnuvmb0GV6vgIAJ4vYT4bek9bb6Q+7HVbyzqM= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= -github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= github.com/kisielk/errcheck v1.1.0/go.mod h1:EZBBE59ingxPouuu3KfxchcWSUPOHkagtvWXihfKN4Q= github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ= github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc= -github.com/lib/pq v1.1.1 h1:sJZmqHoEaY7f+NPP8pgLB/WxulyR3fewgCM2qaSlBb4= -github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/matttproud/golang_protobuf_extensions v1.0.1 h1:4hp9jkHxhMHkqkrB3Ix0jegS5sx/RkqARlsWZ6pIwiU= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/nats-io/jwt v0.2.6 h1:eAyoYvGgGLXR2EpnsBUvi/FcFrBqN6YKFVbOoEfPN4k= -github.com/nats-io/jwt v0.2.6/go.mod h1:mQxQ0uHQ9FhEVPIcTSKwx2lqZEpXWWcCgA7R6NrWvvY= -github.com/nats-io/nats-server/v2 v2.0.0 h1:rbFV7gfUPErVdKImVMOlW8Qb1V22nlcpqup5cb9rYa8= -github.com/nats-io/nats-server/v2 v2.0.0/go.mod h1:RyVdsHHvY4B6c9pWG+uRLpZ0h0XsqiuKp2XCTurP5LI= -github.com/nats-io/nats-streaming-server v0.15.1 h1:NLQg18mp68e17v+RJpXyPdA7ZH4osFEZQzV3tdxT6/M= -github.com/nats-io/nats-streaming-server v0.15.1/go.mod h1:bJ1+2CS8MqvkGfr/NwnCF+Lw6aLnL3F5kenM8bZmdCw= -github.com/nats-io/nats.go v1.8.1 h1:6lF/f1/NN6kzUDBz6pyvQDEXO39jqXcWRLu/tKjtOUQ= -github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= -github.com/nats-io/nkeys v0.0.2 h1:+qM7QpgXnvDDixitZtQUBDY9w/s9mu1ghS+JIbsrx6M= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.1 h1:5iA8DT8V7q8WK2EScv2padNa/rTESc1KdnPw4TC2paw= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/nats-io/stan.go v0.4.5/go.mod h1:Ji7mK6gRZJSH1nc3ZJH6vi7zn/QnZhpR9Arm4iuzsUQ= -github.com/nats-io/stan.go v0.5.0 h1:ZaSPMb6jnDXsSlOACynJrUiB3Evleg3ZyyX+rnf3TlQ= -github.com/nats-io/stan.go v0.5.0/go.mod h1:dYqB+vMN3C2F9pT1FRQpg9eHbjPj6mP0yYuyBNuXHZE= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/pascaldekloe/goe v0.1.0 h1:cBOtyMzM9HTpWjXfbbunk26uA6nG3a8n06Wieeh0MwY= -github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41 h1:GeinFsrjWz97fAxVUEd748aV0cYL+I6k44gFJTCVvpU= -github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= -github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= -github.com/prometheus/client_golang v0.9.4 h1:Y8E/JaaPbmFSW2V81Ab/d8yZFYQQGbni1b1jPcG9Y6A= -github.com/prometheus/client_golang v0.9.4/go.mod h1:oCXIBxdI62A4cR6aTRJCgetEjecSIYzOEaeAn4iYEpM= +github.com/prometheus/client_golang v1.0.0 h1:vrDKnkGzuGvhNAL56c7DBz29ZL+KxnoR0x7enabFceM= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 h1:S/YWwWx/RA8rT8tKFRuGUZhuA90OyIBpPCXkcbwU8DE= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= github.com/prometheus/common v0.4.1 h1:K0MGApIoQvMw27RTdJkPbr3JZ7DNbtxQNyi5STVM6Kw= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.2 h1:6LJUbpNm42llc4HRCuvApCSWB/WfhuNo9K98Q9sNGfs= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= -github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 h1:0ngsPmuP6XIjiFRNFYlvKwSr5zff2v+uPHaffZ6/M4k= -github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= -github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= -github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= -go.etcd.io/bbolt v1.3.2 h1:Z/90sZLPOeCy2PwprqkFa25PdkusRzaj9P8zm/KNyvk= -go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.opencensus.io v0.21.0 h1:mU6zScU4U1YAFPHEHYk+3JC4SY7JxgkqS10ZOSyksNg= -go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5 h1:bselrhR0Or1vomJZC8ZIjWtbDmn9OYFLX5Ik9alpJpE= -golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5 h1:8dUaAV7K4uHsF56JQWkprecIQKdPHtR9jCHF5nB8uzc= -golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= -golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= -golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= -golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c h1:uOCk1iQW6Vc18bnC13MfzScl+wdKBmM9Y9kU7Z83/lw= -golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0= -golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190227155943-e225da77a7e6/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEhagSSnXWGV915qUMm9mrU= -golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b h1:ag/x1USPSsqHud38I9BAC88qdNLDHHtQ4mlgQIZPPNA= -golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= -golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= -golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= -golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= -golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= -golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.6.0 h1:2tJEkRfnZL5g1GeBUlITh/rqT5HG3sFcoVCUUxmgJ2g= -google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= -google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.5.0 h1:KxkO13IPW4Lslp2bz+KHP2E3gtFlrIGNThxkZQ3g+4c= -google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.0 h1:Tfd7cKwKbFRsI8RMAD3oqqw7JPFRrvFlOsfbgVkjOOw= -google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873 h1:nfPFGzJkUDX6uBmpN/pSw7MbOAWegH5QDQuoXFHedLg= -google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= -google.golang.org/grpc v1.21.1 h1:j6XxA85m/6txkUCHvzlV5f+HBNl/1r5cZ2A/3IEFOO8= -google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/message/infrastructure/amqp/config.go b/message/infrastructure/amqp/config.go deleted file mode 100644 index 7a4168603..000000000 --- a/message/infrastructure/amqp/config.go +++ /dev/null @@ -1,493 +0,0 @@ -package amqp - -import ( - "crypto/tls" - "time" - - multierror "github.com/hashicorp/go-multierror" - "github.com/streadway/amqp" - - "github.com/cenkalti/backoff" - - "github.com/pkg/errors" -) - -// NewDurablePubSubConfig creates config for durable PubSub. -// generateQueueName is optional, when passing to the publisher. -// Exchange name is set to the topic name and routing key is empty. -// -// IMPORTANT: Watermill's topic is not mapped directly to the AMQP's topic exchange type. -// It is used to generate exchange name, routing key and queue name, depending on the context. -// To check how topic is mapped, please check Exchange.GenerateName, Queue.GenerateName and Publish.GenerateRoutingKey. -// -// This config is based on this example: https://www.rabbitmq.com/tutorials/tutorial-three-go.html -// with durable added for exchange, queue and amqp.Persistent DeliveryMode. -// Thanks to this, we don't lose messages on broker restart. -func NewDurablePubSubConfig(amqpURI string, generateQueueName QueueNameGenerator) Config { - return Config{ - Connection: ConnectionConfig{ - AmqpURI: amqpURI, - }, - - Marshaler: DefaultMarshaler{}, - - Exchange: ExchangeConfig{ - GenerateName: func(topic string) string { - return topic - }, - Type: "fanout", - Durable: true, - }, - Queue: QueueConfig{ - GenerateName: generateQueueName, - Durable: true, - }, - QueueBind: QueueBindConfig{ - GenerateRoutingKey: func(topic string) string { - return "" - }, - }, - Publish: PublishConfig{ - GenerateRoutingKey: func(topic string) string { - return "" - }, - }, - Consume: ConsumeConfig{ - Qos: QosConfig{ - PrefetchCount: 1, - }, - }, - TopologyBuilder: &DefaultTopologyBuilder{}, - } -} - -// NewNonDurablePubSubConfig creates config for non durable PubSub. -// generateQueueName is optional, when passing to the publisher. -// Exchange name is set to the topic name and routing key is empty. -// -// IMPORTANT: Watermill's topic is not mapped directly to the AMQP's topic exchange type. -// It is used to generate exchange name, routing key and queue name, depending on the context. -// To check how topic is mapped, please check Exchange.GenerateName, Queue.GenerateName and Publish.GenerateRoutingKey. -// -// This config is based on this example: https://www.rabbitmq.com/tutorials/tutorial-three-go.html. -// This config is not durable, so on the restart of the broker all messages will be lost. -func NewNonDurablePubSubConfig(amqpURI string, generateQueueName QueueNameGenerator) Config { - return Config{ - Connection: ConnectionConfig{ - AmqpURI: amqpURI, - }, - - Marshaler: DefaultMarshaler{NotPersistentDeliveryMode: true}, - - Exchange: ExchangeConfig{ - GenerateName: func(topic string) string { - return topic - }, - Type: "fanout", - }, - Queue: QueueConfig{ - GenerateName: generateQueueName, - }, - QueueBind: QueueBindConfig{ - GenerateRoutingKey: func(topic string) string { - return "" - }, - }, - Publish: PublishConfig{ - GenerateRoutingKey: func(topic string) string { - return "" - }, - }, - Consume: ConsumeConfig{ - Qos: QosConfig{ - PrefetchCount: 1, - }, - }, - TopologyBuilder: &DefaultTopologyBuilder{}, - } -} - -// NewDurableQueueConfig creates config for durable Queue. -// Queue name and routing key is set to the topic name by default. Default ("") exchange is used. -// -// IMPORTANT: Watermill's topic is not mapped directly to the AMQP's topic exchange type. -// It is used to generate exchange name, routing key and queue name, depending on the context. -// To check how topic is mapped, please check Exchange.GenerateName, Queue.GenerateName and Publish.GenerateRoutingKey. -// -// This config is based on this example: https://www.rabbitmq.com/tutorials/tutorial-two-go.html -// with durable added for exchange, queue and amqp.Persistent DeliveryMode. -// Thanks to this, we don't lose messages on broker restart. -func NewDurableQueueConfig(amqpURI string) Config { - return Config{ - Connection: ConnectionConfig{ - AmqpURI: amqpURI, - }, - - Marshaler: DefaultMarshaler{}, - - Exchange: ExchangeConfig{ - GenerateName: func(topic string) string { - return "" - }, - }, - Queue: QueueConfig{ - GenerateName: GenerateQueueNameTopicName, - Durable: true, - }, - QueueBind: QueueBindConfig{ - GenerateRoutingKey: func(topic string) string { - return "" - }, - }, - Publish: PublishConfig{ - GenerateRoutingKey: func(topic string) string { - return topic - }, - }, - Consume: ConsumeConfig{ - Qos: QosConfig{ - PrefetchCount: 1, - }, - }, - TopologyBuilder: &DefaultTopologyBuilder{}, - } -} - -// NewNonDurableQueueConfig creates config for non durable Queue. -// Queue name and routing key is set to the topic name by default. Default ("") exchange is used. -// -// IMPORTANT: Watermill's topic is not mapped directly to the AMQP's topic exchange type. -// It is used to generate exchange name, routing key and queue name, depending on the context. -// To check how topic is mapped, please check Exchange.GenerateName, Queue.GenerateName and Publish.GenerateRoutingKey. -// -// This config is based on this example: https://www.rabbitmq.com/tutorials/tutorial-two-go.html. -// This config is not durable, so on the restart of the broker all messages will be lost. -func NewNonDurableQueueConfig(amqpURI string) Config { - return Config{ - Connection: ConnectionConfig{ - AmqpURI: amqpURI, - }, - - Marshaler: DefaultMarshaler{NotPersistentDeliveryMode: true}, - - Exchange: ExchangeConfig{ - GenerateName: func(topic string) string { - return "" - }, - }, - Queue: QueueConfig{ - GenerateName: GenerateQueueNameTopicName, - }, - QueueBind: QueueBindConfig{ - GenerateRoutingKey: func(topic string) string { - return "" - }, - }, - Publish: PublishConfig{ - GenerateRoutingKey: func(topic string) string { - return topic - }, - }, - Consume: ConsumeConfig{ - Qos: QosConfig{ - PrefetchCount: 1, - }, - }, - TopologyBuilder: &DefaultTopologyBuilder{}, - } -} - -type Config struct { - Connection ConnectionConfig - - Marshaler Marshaler - - Exchange ExchangeConfig - Queue QueueConfig - QueueBind QueueBindConfig - - Publish PublishConfig - Consume ConsumeConfig - - TopologyBuilder TopologyBuilder -} - -func (c Config) validate() error { - var err error - - if c.Connection.AmqpURI == "" { - err = multierror.Append(err, errors.New("empty Config.AmqpURI")) - } - if c.Marshaler == nil { - err = multierror.Append(err, errors.New("missing Config.Marshaler")) - } - if c.Exchange.GenerateName == nil { - err = multierror.Append(err, errors.New("missing Config.GenerateName")) - } - - return err -} - -func (c Config) ValidatePublisher() error { - err := c.validate() - - if c.Publish.GenerateRoutingKey == nil { - err = multierror.Append(err, errors.New("missing Config.GenerateRoutingKey")) - } - - return err -} - -func (c Config) ValidateSubscriber() error { - err := c.validate() - - if c.Queue.GenerateName == nil { - err = multierror.Append(err, errors.New("missing Config.Queue.GenerateName")) - } - - return err -} - -type ConnectionConfig struct { - AmqpURI string - - TLSConfig *tls.Config - AmqpConfig *amqp.Config - - Reconnect *ReconnectConfig -} - -// Config descriptions are based on descriptions from: https://github.com/streadway/amqp -// Copyright (c) 2012, Sean Treadway, SoundCloud Ltd. -// BSD 2-Clause "Simplified" License - -type ExchangeConfig struct { - // GenerateName is generated based on the topic provided for Publish or Subscribe method. - // - // Exchange names starting with "amq." are reserved for pre-declared and - // standardized exchanges. The client MAY declare an exchange starting with - // "amq." if the passive option is set, or the exchange already exists. Names can - // consist of a non-empty sequence of letters, digits, hyphen, underscore, - // period, or colon. - GenerateName func(topic string) string - - // Each exchange belongs to one of a set of exchange kinds/types implemented by - // the server. The exchange types define the functionality of the exchange - i.e. - // how messages are routed through it. Once an exchange is declared, its type - // cannot be changed. The common types are "direct", "fanout", "topic" and - // "headers". - Type string - - // Durable and Non-Auto-Deleted exchanges will survive server restarts and remain - // declared when there are no remaining bindings. This is the best lifetime for - // long-lived exchange configurations like stable routes and default exchanges. - Durable bool - - // Non-Durable and Auto-Deleted exchanges will be deleted when there are no - // remaining bindings and not restored on server restart. This lifetime is - // useful for temporary topologies that should not pollute the virtual host on - // failure or after the consumers have completed. - // - // Non-Durable and Non-Auto-deleted exchanges will remain as long as the server is - // running including when there are no remaining bindings. This is useful for - // temporary topologies that may have long delays between bindings. - // - AutoDeleted bool - - // Exchanges declared as `internal` do not accept accept publishings. Internal - // exchanges are useful when you wish to implement inter-exchange topologies - // that should not be exposed to users of the broker. - Internal bool - - // When noWait is true, declare without waiting for a confirmation from the server. - // The channel may be closed as a result of an error. Add a NotifyClose listener- - // to respond to any exceptions. - NoWait bool - - // Optional amqp.Table of arguments that are specific to the server's implementation of - // the exchange can be sent for exchange types that require extra parameters. - Arguments amqp.Table -} - -// QueueNameGenerator generates QueueName based on the topic. -type QueueNameGenerator func(topic string) string - -// GenerateQueueNameTopicName generates queueName equal to the topic. -func GenerateQueueNameTopicName(topic string) string { - return topic -} - -// GenerateQueueNameConstant generate queue name equal to queueName. -func GenerateQueueNameConstant(queueName string) QueueNameGenerator { - return func(topic string) string { - return queueName - } -} - -// GenerateQueueNameTopicNameWithSuffix generates queue name equal to: -// topic + "_" + suffix -func GenerateQueueNameTopicNameWithSuffix(suffix string) QueueNameGenerator { - return func(topic string) string { - return topic + "_" + suffix - } -} - -type QueueConfig struct { - // GenerateRoutingKey is generated based on the topic provided for Subscribe. - GenerateName QueueNameGenerator - - // Durable and Non-Auto-Deleted queues will survive server restarts and remain - // when there are no remaining consumers or bindings. Persistent publishings will - // be restored in this queue on server restart. These queues are only able to be - // bound to durable exchanges. - Durable bool - - // Non-Durable and Auto-Deleted exchanges will be deleted when there are no - // remaining bindings and not restored on server restart. This lifetime is - // useful for temporary topologies that should not pollute the virtual host on - // failure or after the consumers have completed. - // - // Non-Durable and Non-Auto-deleted exchanges will remain as long as the server is - // running including when there are no remaining bindings. This is useful for - // temporary topologies that may have long delays between bindings. - AutoDelete bool - - // Exclusive queues are only accessible by the connection that declares them and - // will be deleted when the connection closes. Channels on other connections - // will receive an error when attempting to declare, bind, consume, purge or - // delete a queue with the same name. - Exclusive bool - - // When noWait is true, the queue will assume to be declared on the server. A - // channel exception will arrive if the conditions are met for existing queues - // or attempting to modify an existing queue from a different connection. - NoWait bool - - // Optional amqpe.Table of arguments that are specific to the server's implementation of - // the queue can be sent for queue types that require extra parameters. - Arguments amqp.Table -} - -// QueueBind binds an exchange to a queue so that publishings to the exchange will -// be routed to the queue when the publishing routing key matches the binding -// routing key. -type QueueBindConfig struct { - GenerateRoutingKey func(topic string) string - - // When noWait is false and the queue could not be bound, the channel will be - // closed with an error. - NoWait bool - - // Optional amqpe.Table of arguments that are specific to the server's implementation of - // the queue bind can be sent for queue bind types that require extra parameters. - Arguments amqp.Table -} - -type PublishConfig struct { - // GenerateRoutingKey is generated based on the topic provided for Publish. - GenerateRoutingKey func(topic string) string - - // Publishings can be undeliverable when the mandatory flag is true and no queue is - // bound that matches the routing key, or when the immediate flag is true and no - // consumer on the matched queue is ready to accept the delivery. - Mandatory bool - - // Publishings can be undeliverable when the mandatory flag is true and no queue is - // bound that matches the routing key, or when the immediate flag is true and no - // consumer on the matched queue is ready to accept the delivery. - Immediate bool - - // With transactional enabled, all messages wil be added in transaction. - Transactional bool -} - -type ConsumeConfig struct { - // When true, message will be not requeued when nacked. - NoRequeueOnNack bool - - // The consumer is identified by a string that is unique and scoped for all - // consumers on this channel. If you wish to eventually cancel the consumer, use - // the same non-empty identifier in Channel.Cancel. An empty string will cause - // the library to generate a unique identity. The consumer identity will be - // included in every Delivery in the ConsumerTag field - Consumer string - - // When exclusive is true, the server will ensure that this is the sole consumer - // from this queue. When exclusive is false, the server will fairly distribute - // deliveries across multiple consumers. - Exclusive bool - - // The noLocal flag is not supported by RabbitMQ. - NoLocal bool - - // When noWait is true, do not wait for the server to confirm the request and - // immediately begin deliveries. If it is not possible to consume, a channel - // exception will be raised and the channel will be closed. - NoWait bool - - Qos QosConfig - - // Optional arguments can be provided that have specific semantics for the queue - // or server. - Arguments amqp.Table -} - -// Qos controls how many messages or how many bytes the server will try to keep on -// the network for consumers before receiving delivery acks. The intent of Qos is -// to make sure the network buffers stay full between the server and client. -type QosConfig struct { - // With a prefetch count greater than zero, the server will deliver that many - // messages to consumers before acknowledgments are received. The server ignores - // this option when consumers are started with noAck because no acknowledgments - // are expected or sent. - // - // In order to defeat that we can set the prefetch count with the value of 1. - // This tells RabbitMQ not to give more than one message to a worker at a time. - // Or, in other words, don't dispatch a new message to a worker until it has - // processed and acknowledged the previous one. - // Instead, it will dispatch it to the next worker that is not still busy. - PrefetchCount int - - // With a prefetch size greater than zero, the server will try to keep at least - // that many bytes of deliveries flushed to the network before receiving - // acknowledgments from the consumers. This option is ignored when consumers are - // started with noAck. - PrefetchSize int - - // When global is true, these Qos settings apply to all existing and future - // consumers on all channels on the same connection. When false, the Channel.Qos - // settings will apply to all existing and future consumers on this channel. - // - // Please see the RabbitMQ Consumer Prefetch documentation for an explanation of - // how the global flag is implemented in RabbitMQ, as it differs from the - // AMQP 0.9.1 specification in that global Qos settings are limited in scope to - // channels, not connections (https://www.rabbitmq.com/consumer-prefetch.html). - Global bool -} - -type ReconnectConfig struct { - BackoffInitialInterval time.Duration - BackoffRandomizationFactor float64 - BackoffMultiplier float64 - BackoffMaxInterval time.Duration -} - -func DefaultReconnectConfig() *ReconnectConfig { - return &ReconnectConfig{ - BackoffInitialInterval: 500 * time.Millisecond, - BackoffRandomizationFactor: 0.5, - BackoffMultiplier: 1.5, - BackoffMaxInterval: 60 * time.Second, - } -} - -func (r ReconnectConfig) backoffConfig() *backoff.ExponentialBackOff { - return &backoff.ExponentialBackOff{ - InitialInterval: r.BackoffInitialInterval, - RandomizationFactor: r.BackoffRandomizationFactor, - Multiplier: r.BackoffMultiplier, - MaxInterval: r.BackoffMaxInterval, - MaxElapsedTime: 0, // no support for disabling reconnect, only close of Pub/Sub can stop reconnecting - Clock: backoff.SystemClock, - } -} diff --git a/message/infrastructure/amqp/connection.go b/message/infrastructure/amqp/connection.go deleted file mode 100644 index 83a30123f..000000000 --- a/message/infrastructure/amqp/connection.go +++ /dev/null @@ -1,167 +0,0 @@ -package amqp - -import ( - "sync" - - "github.com/cenkalti/backoff" - "github.com/pkg/errors" - "github.com/streadway/amqp" - - "github.com/ThreeDotsLabs/watermill" -) - -type connectionWrapper struct { - config Config - - logger watermill.LoggerAdapter - - amqpConnection *amqp.Connection - amqpConnectionLock sync.Mutex - connected chan struct{} - - publishBindingsLock sync.RWMutex - publishBindingsPrepared map[string]struct{} - - closing chan struct{} - closed bool - - publishingWg sync.WaitGroup - subscribingWg sync.WaitGroup -} - -func newConnection( - config Config, - logger watermill.LoggerAdapter, -) (*connectionWrapper, error) { - if logger == nil { - logger = watermill.NopLogger{} - } - - pubSub := &connectionWrapper{ - config: config, - logger: logger, - closing: make(chan struct{}), - connected: make(chan struct{}), - } - if err := pubSub.connect(); err != nil { - return nil, err - } - - go pubSub.handleConnectionClose() - - return pubSub, nil -} - -func (c *connectionWrapper) Close() error { - if c.closed { - return nil - } - c.closed = true - close(c.closing) - - c.logger.Info("Closing AMQP Pub/Sub", nil) - defer c.logger.Info("Closed AMQP Pub/Sub", nil) - - c.publishingWg.Wait() - - if err := c.amqpConnection.Close(); err != nil { - c.logger.Error("Connection close error", err, nil) - } - - c.subscribingWg.Wait() - - return nil -} - -func (c *connectionWrapper) connect() error { - c.amqpConnectionLock.Lock() - defer c.amqpConnectionLock.Unlock() - - amqpConfig := c.config.Connection.AmqpConfig - if amqpConfig != nil && amqpConfig.TLSClientConfig != nil && c.config.Connection.TLSConfig != nil { - return errors.New("both Config.AmqpConfig.TLSClientConfig and Config.TLSConfig are set") - } - - var connection *amqp.Connection - var err error - - if amqpConfig != nil { - connection, err = amqp.DialConfig(c.config.Connection.AmqpURI, *c.config.Connection.AmqpConfig) - } else if c.config.Connection.TLSConfig != nil { - connection, err = amqp.DialTLS(c.config.Connection.AmqpURI, c.config.Connection.TLSConfig) - } else { - connection, err = amqp.Dial(c.config.Connection.AmqpURI) - } - - if err != nil { - return errors.Wrap(err, "cannot connect to AMQP") - } - c.amqpConnection = connection - close(c.connected) - - c.logger.Info("Connected to AMQP", nil) - - return nil -} - -func (c *connectionWrapper) Connection() *amqp.Connection { - return c.amqpConnection -} - -func (c *connectionWrapper) Connected() chan struct{} { - return c.connected -} - -func (c *connectionWrapper) IsConnected() bool { - select { - case <-c.connected: - return true - default: - return false - } -} - -func (c *connectionWrapper) handleConnectionClose() { - for { - c.logger.Debug("handleConnectionClose is waiting for p.connected", nil) - <-c.connected - c.logger.Debug("handleConnectionClose is for connection or Pub/Sub close", nil) - - notifyCloseConnection := c.amqpConnection.NotifyClose(make(chan *amqp.Error)) - - select { - case <-c.closing: - c.logger.Debug("Stopping handleConnectionClose", nil) - return - case err := <-notifyCloseConnection: - c.connected = make(chan struct{}) - c.logger.Error("Received close notification from AMQP, reconnecting", err, nil) - c.reconnect() - } - } -} - -func (c *connectionWrapper) reconnect() { - reconnectConfig := c.config.Connection.Reconnect - if reconnectConfig == nil { - reconnectConfig = DefaultReconnectConfig() - } - - if err := backoff.Retry(func() error { - err := c.connect() - if err == nil { - return nil - } - - c.logger.Error("Cannot reconnect to AMQP, retrying", err, nil) - - if c.closed { - return backoff.Permanent(errors.Wrap(err, "closing AMQP connection")) - } - - return err - }, reconnectConfig.backoffConfig()); err != nil { - // should only exit, if closing Pub/Sub - c.logger.Error("AMQP reconnect failed failed", err, nil) - } -} diff --git a/message/infrastructure/amqp/doc.go b/message/infrastructure/amqp/doc.go deleted file mode 100644 index 22d5451cf..000000000 --- a/message/infrastructure/amqp/doc.go +++ /dev/null @@ -1,21 +0,0 @@ -// AMQP implementation of Watermill's Pub/Sub interface. -// -// Supported features: -// - Reconnect support -// - Fully customizable configuration -// - Qos settings -// - TLS support -// - Publish Transactions support (optional, can be enabled in config) -// -// Nomenclature -// -// Unfortunately, Watermill's nomenclature is not fully compatible with AMQP's nomenclature. -// Depending of the configuration, topic can be mapped to exchange name, routing key and queue name. -// -// IMPORTANT: Watermill's topic is not mapped directly to the AMQP's topic exchange type. -// It is used to generate exchange name, routing key and queue name, depending on the context. -// To check how topic is mapped, please check Exchange.GenerateName, Queue.GenerateName and Publish.GenerateRoutingKey. -// -// In case of any problem to find to what exchange name, routing key and queue name are set, -// just enable logging with debug level and check it in logs. -package amqp diff --git a/message/infrastructure/amqp/marshaler.go b/message/infrastructure/amqp/marshaler.go deleted file mode 100644 index 5c3d6756e..000000000 --- a/message/infrastructure/amqp/marshaler.go +++ /dev/null @@ -1,90 +0,0 @@ -package amqp - -import ( - "github.com/ThreeDotsLabs/watermill/message" - "github.com/pkg/errors" - "github.com/streadway/amqp" -) - -const MessageUUIDHeaderKey = "_watermill_message_uuid" - -// Marshaler marshals Watermill's message to amqp.Publishing and unmarshals amqp.Delivery to Watermill's message. -type Marshaler interface { - Marshal(msg *message.Message) (amqp.Publishing, error) - Unmarshal(amqpMsg amqp.Delivery) (*message.Message, error) -} - -type DefaultMarshaler struct { - // PostprocessPublishing can be used to make some extra processing with amqp.Publishing, - // for example add CorrelationId and ContentType: - // - // amqp.DefaultMarshaler{ - // PostprocessPublishing: func(publishing stdAmqp.Publishing) stdAmqp.Publishing { - // publishing.CorrelationId = "correlation" - // publishing.ContentType = "application/json" - // - // return publishing - // }, - // } - PostprocessPublishing func(amqp.Publishing) amqp.Publishing - - // When true, DeliveryMode will be not set to Persistent. - // - // DeliveryMode Transient means higher throughput, but messages will not be - // restored on broker restart. The delivery mode of publishings is unrelated - // to the durability of the queues they reside on. Transient messages will - // not be restored to durable queues, persistent messages will be restored to - // durable queues and lost on non-durable queues during server restart. - NotPersistentDeliveryMode bool -} - -func (d DefaultMarshaler) Marshal(msg *message.Message) (amqp.Publishing, error) { - headers := make(amqp.Table, len(msg.Metadata)+1) // metadata + plus uuid - - for key, value := range msg.Metadata { - headers[key] = value - } - headers[MessageUUIDHeaderKey] = msg.UUID - - publishing := amqp.Publishing{ - Body: msg.Payload, - Headers: headers, - } - if !d.NotPersistentDeliveryMode { - publishing.DeliveryMode = amqp.Persistent - } - - if d.PostprocessPublishing != nil { - publishing = d.PostprocessPublishing(publishing) - } - - return publishing, nil -} - -func (DefaultMarshaler) Unmarshal(amqpMsg amqp.Delivery) (*message.Message, error) { - msgUUID, ok := amqpMsg.Headers[MessageUUIDHeaderKey] - if !ok { - return nil, errors.Errorf("missing %s header", MessageUUIDHeaderKey) - } - - msgUUIDStr, ok := msgUUID.(string) - if !ok { - return nil, errors.Errorf("message UUID is not a string, but: %#v", msgUUID) - } - - msg := message.NewMessage(msgUUIDStr, amqpMsg.Body) - msg.Metadata = make(message.Metadata, len(amqpMsg.Headers)-1) // headers - minus uuid - - for key, value := range amqpMsg.Headers { - if key == MessageUUIDHeaderKey { - continue - } - - msg.Metadata[key], ok = value.(string) - if !ok { - return nil, errors.Errorf("metadata %s is not a string, but %#v", key, value) - } - } - - return msg, nil -} diff --git a/message/infrastructure/amqp/marshaler_test.go b/message/infrastructure/amqp/marshaler_test.go deleted file mode 100644 index 5587c4706..000000000 --- a/message/infrastructure/amqp/marshaler_test.go +++ /dev/null @@ -1,97 +0,0 @@ -package amqp_test - -import ( - "testing" - - "github.com/stretchr/testify/assert" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/amqp" - stdAmqp "github.com/streadway/amqp" - "github.com/stretchr/testify/require" -) - -func TestDefaultMarshaler(t *testing.T) { - marshaler := amqp.DefaultMarshaler{} - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - marshaled, err := marshaler.Marshal(msg) - require.NoError(t, err) - - unmarshaledMsg, err := marshaler.Unmarshal(publishingToDelivery(marshaled)) - require.NoError(t, err) - - assert.True(t, msg.Equals(unmarshaledMsg)) - assert.Equal(t, marshaled.DeliveryMode, stdAmqp.Persistent) -} - -func TestDefaultMarshaler_not_persistent(t *testing.T) { - marshaler := amqp.DefaultMarshaler{NotPersistentDeliveryMode: true} - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - marshaled, err := marshaler.Marshal(msg) - require.NoError(t, err) - - assert.EqualValues(t, marshaled.DeliveryMode, 0) -} - -func TestDefaultMarshaler_postprocess_publishing(t *testing.T) { - marshaler := amqp.DefaultMarshaler{ - PostprocessPublishing: func(publishing stdAmqp.Publishing) stdAmqp.Publishing { - publishing.CorrelationId = "correlation" - publishing.ContentType = "application/json" - - return publishing - }, - } - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - marshaled, err := marshaler.Marshal(msg) - require.NoError(t, err) - - assert.Equal(t, marshaled.CorrelationId, "correlation") - assert.Equal(t, marshaled.ContentType, "application/json") -} - -func BenchmarkDefaultMarshaler_Marshal(b *testing.B) { - m := amqp.DefaultMarshaler{} - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - for i := 0; i < b.N; i++ { - m.Marshal(msg) - } -} - -func BenchmarkDefaultMarshaler_Unmarshal(b *testing.B) { - m := amqp.DefaultMarshaler{} - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - marshaled, err := m.Marshal(msg) - if err != nil { - b.Fatal(err) - } - - consumedMsg := publishingToDelivery(marshaled) - - for i := 0; i < b.N; i++ { - m.Unmarshal(consumedMsg) - } -} - -func publishingToDelivery(marshaled stdAmqp.Publishing) stdAmqp.Delivery { - return stdAmqp.Delivery{ - Body: marshaled.Body, - Headers: marshaled.Headers, - } -} diff --git a/message/infrastructure/amqp/publisher.go b/message/infrastructure/amqp/publisher.go deleted file mode 100644 index fc3453abd..000000000 --- a/message/infrastructure/amqp/publisher.go +++ /dev/null @@ -1,163 +0,0 @@ -package amqp - -import ( - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - multierror "github.com/hashicorp/go-multierror" - "github.com/pkg/errors" - "github.com/streadway/amqp" -) - -type Publisher struct { - *connectionWrapper - - config Config -} - -func NewPublisher(config Config, logger watermill.LoggerAdapter) (*Publisher, error) { - if err := config.ValidatePublisher(); err != nil { - return nil, err - } - - conn, err := newConnection(config, logger) - if err != nil { - return nil, err - } - - return &Publisher{conn, config}, nil -} - -// Publish publishes messages to AMQP broker. -// Publish is blocking until the broker has received and saved the message. -// Publish is always thread safe. -// -// Watermill's topic in Publish is not mapped to AMQP's topic, but depending on configuration it can be mapped -// to exchange, queue or routing key. -// For detailed description of nomenclature mapping, please check "Nomenclature" paragraph in doc.go file. -func (p *Publisher) Publish(topic string, messages ...*message.Message) (err error) { - if p.closed { - return errors.New("pub/sub is connection closed") - } - p.publishingWg.Add(1) - defer p.publishingWg.Done() - - if !p.IsConnected() { - return errors.New("not connected to AMQP") - } - - channel, err := p.amqpConnection.Channel() - if err != nil { - return errors.Wrap(err, "cannot open channel") - } - defer func() { - if channelCloseErr := channel.Close(); channelCloseErr != nil { - err = multierror.Append(err, channelCloseErr) - } - }() - - if p.config.Publish.Transactional { - if err := p.beginTransaction(channel); err != nil { - return err - } - - defer func() { - err = p.commitTransaction(channel, err) - }() - } - - if err := p.preparePublishBindings(topic, channel); err != nil { - return err - } - - logFields := make(watermill.LogFields, 3) - - exchangeName := p.config.Exchange.GenerateName(topic) - logFields["amqp_exchange_name"] = exchangeName - - routingKey := p.config.Publish.GenerateRoutingKey(topic) - logFields["amqp_routing_key"] = routingKey - - for _, msg := range messages { - if err := p.publishMessage(exchangeName, routingKey, msg, channel, logFields); err != nil { - return err - } - } - - return nil -} - -func (p *Publisher) beginTransaction(channel *amqp.Channel) error { - if err := channel.Tx(); err != nil { - return errors.Wrap(err, "cannot start transaction") - } - - p.logger.Trace("Transaction begun", nil) - - return nil -} - -func (p *Publisher) commitTransaction(channel *amqp.Channel, err error) error { - if err != nil { - if rollbackErr := channel.TxRollback(); rollbackErr != nil { - return multierror.Append(err, rollbackErr) - } - } - - return channel.TxCommit() -} - -func (p *Publisher) publishMessage( - exchangeName, routingKey string, - msg *message.Message, - channel *amqp.Channel, - logFields watermill.LogFields, -) error { - logFields = logFields.Add(watermill.LogFields{"message_uuid": msg.UUID}) - - p.logger.Trace("Publishing message", logFields) - - amqpMsg, err := p.config.Marshaler.Marshal(msg) - if err != nil { - return errors.Wrap(err, "cannot marshal message") - } - - if err = channel.Publish( - exchangeName, - routingKey, - p.config.Publish.Mandatory, - p.config.Publish.Immediate, - amqpMsg, - ); err != nil { - return errors.Wrap(err, "cannot publish msg") - } - - p.logger.Trace("Message published", logFields) - - return nil -} - -func (p *Publisher) preparePublishBindings(topic string, channel *amqp.Channel) error { - p.publishBindingsLock.RLock() - _, prepared := p.publishBindingsPrepared[topic] - p.publishBindingsLock.RUnlock() - - if prepared { - return nil - } - - p.publishBindingsLock.Lock() - defer p.publishBindingsLock.Unlock() - - if p.config.Exchange.GenerateName(topic) != "" { - if err := p.config.TopologyBuilder.ExchangeDeclare(channel, p.config.Exchange.GenerateName(topic), p.config); err != nil { - return err - } - } - - if p.publishBindingsPrepared == nil { - p.publishBindingsPrepared = make(map[string]struct{}) - } - p.publishBindingsPrepared[topic] = struct{}{} - - return nil -} diff --git a/message/infrastructure/amqp/pubsub_reconnect_test.go b/message/infrastructure/amqp/pubsub_reconnect_test.go deleted file mode 100644 index f8eb9a23c..000000000 --- a/message/infrastructure/amqp/pubsub_reconnect_test.go +++ /dev/null @@ -1,18 +0,0 @@ -// +build reconnect - -package amqp_test - -import ( - "testing" - - "github.com/ThreeDotsLabs/watermill/message/infrastructure" -) - -func TestPublishSubscribe_reconnect(t *testing.T) { - infrastructure.TestReconnect(t, createPubSub(t), infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - }) -} diff --git a/message/infrastructure/amqp/pubsub_stress_test.go b/message/infrastructure/amqp/pubsub_stress_test.go deleted file mode 100644 index 07339074d..000000000 --- a/message/infrastructure/amqp/pubsub_stress_test.go +++ /dev/null @@ -1,37 +0,0 @@ -// +build stress - -package amqp_test - -import ( - "testing" - - "github.com/ThreeDotsLabs/watermill/message/infrastructure" -) - -func TestPublishSubscribe_stress(t *testing.T) { - infrastructure.TestPubSubStressTest( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - }, - createPubSub, - createPubSubWithConsumerGroup, - ) -} - -func TestPublishSubscribe_ordered_stress(t *testing.T) { - infrastructure.TestPubSubStressTest( - t, - infrastructure.Features{ - ConsumerGroups: false, - ExactlyOnceDelivery: false, - GuaranteedOrder: true, - Persistent: true, - }, - createQueuePubSub, - nil, - ) -} diff --git a/message/infrastructure/amqp/pubsub_test.go b/message/infrastructure/amqp/pubsub_test.go deleted file mode 100644 index 86a358b01..000000000 --- a/message/infrastructure/amqp/pubsub_test.go +++ /dev/null @@ -1,152 +0,0 @@ -package amqp_test - -import ( - "os" - "testing" - - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/amqp" -) - -func amqpURI() string { - uri := os.Getenv("WATERMILL_TEST_AMQP_URI") - if uri != "" { - return uri - } - - return "amqp://guest:guest@localhost:5672/" -} - -func createPubSub(t *testing.T) (message.Publisher, message.Subscriber) { - publisher, err := amqp.NewPublisher( - amqp.NewDurablePubSubConfig( - amqpURI(), - nil, - ), - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - subscriber, err := amqp.NewSubscriber( - amqp.NewDurablePubSubConfig( - amqpURI(), - amqp.GenerateQueueNameTopicNameWithSuffix("test"), - ), - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - return publisher, subscriber -} - -func createPubSubWithConsumerGroup(t *testing.T, consumerGroup string) (message.Publisher, message.Subscriber) { - publisher, err := amqp.NewPublisher( - amqp.NewDurablePubSubConfig( - amqpURI(), - nil, - ), - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - subscriber, err := amqp.NewSubscriber( - amqp.NewDurablePubSubConfig( - amqpURI(), - amqp.GenerateQueueNameTopicNameWithSuffix(consumerGroup), - ), - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - return publisher, subscriber -} - -func TestPublishSubscribe_pubsub(t *testing.T) { - infrastructure.TestPubSub( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: true, - Persistent: true, - RestartServiceCommand: []string{"docker", "restart", "watermill_rabbitmq_1"}, - }, - createPubSub, - createPubSubWithConsumerGroup, - ) -} - -func createQueuePubSub(t *testing.T) (message.Publisher, message.Subscriber) { - config := amqp.NewDurableQueueConfig( - amqpURI(), - ) - - publisher, err := amqp.NewPublisher( - config, - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - subscriber, err := amqp.NewSubscriber( - config, - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - return publisher, subscriber -} - -func TestPublishSubscribe_queue(t *testing.T) { - infrastructure.TestPubSub( - t, - infrastructure.Features{ - ConsumerGroups: false, - ExactlyOnceDelivery: false, - GuaranteedOrder: true, - Persistent: true, - RestartServiceCommand: []string{"docker", "restart", "watermill_rabbitmq_1"}, - }, - createQueuePubSub, - nil, - ) -} - -func TestPublishSubscribe_transactional_publish(t *testing.T) { - createTransactionalPubSub := func(t *testing.T) (message.Publisher, message.Subscriber) { - config := amqp.NewDurablePubSubConfig( - amqpURI(), - amqp.GenerateQueueNameTopicNameWithSuffix("test"), - ) - config.Publish.Transactional = true - - publisher, err := amqp.NewPublisher( - config, - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - subscriber, err := amqp.NewSubscriber( - config, - watermill.NewStdLogger(true, true), - ) - require.NoError(t, err) - - return publisher, subscriber - } - - infrastructure.TestPublishSubscribe( - t, - createTransactionalPubSub, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: true, - Persistent: true, - RestartServiceCommand: []string{"docker", "restart", "watermill_rabbitmq_1"}, - }, - ) -} diff --git a/message/infrastructure/amqp/subscriber.go b/message/infrastructure/amqp/subscriber.go deleted file mode 100644 index 96bac4dce..000000000 --- a/message/infrastructure/amqp/subscriber.go +++ /dev/null @@ -1,302 +0,0 @@ -package amqp - -import ( - "context" - "time" - - "github.com/hashicorp/go-multierror" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/pkg/errors" - "github.com/streadway/amqp" -) - -type Subscriber struct { - *connectionWrapper - - config Config -} - -func NewSubscriber(config Config, logger watermill.LoggerAdapter) (*Subscriber, error) { - if err := config.ValidateSubscriber(); err != nil { - return nil, err - } - - conn, err := newConnection(config, logger) - if err != nil { - return nil, err - } - - return &Subscriber{conn, config}, nil -} - -// Subscribe consumes messages from AMQP broker. -// -// Watermill's topic in Subscribe is not mapped to AMQP's topic, but depending on configuration it can be mapped -// to exchange, queue or routing key. -// For detailed description of nomenclature mapping, please check "Nomenclature" paragraph in doc.go file. -func (s *Subscriber) Subscribe(ctx context.Context, topic string) (<-chan *message.Message, error) { - if s.closed { - return nil, errors.New("pub/sub is closed") - } - - if !s.IsConnected() { - return nil, errors.New("not connected to AMQP") - } - - logFields := watermill.LogFields{"topic": topic} - - out := make(chan *message.Message) - - queueName := s.config.Queue.GenerateName(topic) - logFields["amqp_queue_name"] = queueName - - exchangeName := s.config.Exchange.GenerateName(topic) - logFields["amqp_exchange_name"] = exchangeName - - if err := s.prepareConsume(queueName, exchangeName, logFields); err != nil { - return nil, errors.Wrap(err, "failed to prepare consume") - } - - s.subscribingWg.Add(1) - go func(ctx context.Context) { - defer func() { - close(out) - s.logger.Info("Stopped consuming from AMQP channel", logFields) - s.subscribingWg.Done() - }() - - ReconnectLoop: - for { - s.logger.Debug("Waiting for s.connected or s.closing in ReconnectLoop", logFields) - - select { - case <-s.connected: - s.logger.Debug("Connection established in ReconnectLoop", logFields) - // runSubscriber blocks until connection fails or Close() is called - s.runSubscriber(ctx, out, queueName, exchangeName, logFields) - case <-s.closing: - s.logger.Debug("Stopping ReconnectLoop (closing)", logFields) - break ReconnectLoop - case <-ctx.Done(): - s.logger.Debug("Stopping ReconnectLoop (ctx done)", logFields) - break ReconnectLoop - } - - time.Sleep(time.Millisecond * 100) - } - }(ctx) - - return out, nil -} - -func (s *Subscriber) SubscribeInitialize(topic string) (err error) { - if s.closed { - return errors.New("pub/sub is closed") - } - - if !s.IsConnected() { - return errors.New("not connected to AMQP") - } - - logFields := watermill.LogFields{"topic": topic} - - queueName := s.config.Queue.GenerateName(topic) - logFields["amqp_queue_name"] = queueName - - exchangeName := s.config.Exchange.GenerateName(topic) - logFields["amqp_exchange_name"] = exchangeName - - s.logger.Info("Initializing subscribe", logFields) - - return errors.Wrap(s.prepareConsume(queueName, exchangeName, logFields), "failed to prepare consume") -} - -func (s *Subscriber) prepareConsume(queueName string, exchangeName string, logFields watermill.LogFields) (err error) { - channel, err := s.openSubscribeChannel(logFields) - if err != nil { - return err - } - defer func() { - if channelCloseErr := channel.Close(); channelCloseErr != nil { - err = multierror.Append(err, channelCloseErr) - } - }() - - if err = s.config.TopologyBuilder.BuildTopology(channel, queueName, exchangeName, s.config, s.logger); err != nil { - return err - } - - s.logger.Debug("Queue bound to exchange", logFields) - - return nil -} - -func (s *Subscriber) runSubscriber( - ctx context.Context, - out chan *message.Message, - queueName string, - exchangeName string, - logFields watermill.LogFields, -) { - channel, err := s.openSubscribeChannel(logFields) - if err != nil { - s.logger.Error("Failed to open channel", err, logFields) - return - } - defer func() { - err := channel.Close() - s.logger.Error("Failed to close channel", err, logFields) - }() - - notifyCloseChannel := channel.NotifyClose(make(chan *amqp.Error)) - - sub := subscription{ - out: out, - logFields: logFields, - notifyCloseChannel: notifyCloseChannel, - channel: channel, - queueName: queueName, - logger: s.logger, - closing: s.closing, - config: s.config, - } - - s.logger.Info("Starting consuming from AMQP channel", logFields) - - sub.ProcessMessages(ctx) -} - -func (s *Subscriber) openSubscribeChannel(logFields watermill.LogFields) (*amqp.Channel, error) { - if !s.IsConnected() { - return nil, errors.New("not connected to AMQP") - } - - channel, err := s.amqpConnection.Channel() - if err != nil { - return nil, errors.Wrap(err, "cannot open channel") - } - s.logger.Debug("Channel opened", logFields) - - if s.config.Consume.Qos != (QosConfig{}) { - err = channel.Qos( - s.config.Consume.Qos.PrefetchCount, - s.config.Consume.Qos.PrefetchSize, - s.config.Consume.Qos.Global, - ) - s.logger.Debug("Qos set", logFields) - } - - return channel, nil -} - -type subscription struct { - out chan *message.Message - logFields watermill.LogFields - notifyCloseChannel chan *amqp.Error - channel *amqp.Channel - queueName string - - logger watermill.LoggerAdapter - closing chan struct{} - config Config -} - -func (s *subscription) ProcessMessages(ctx context.Context) { - amqpMsgs, err := s.createConsumer(s.queueName, s.channel) - if err != nil { - s.logger.Error("Failed to start consuming messages", err, s.logFields) - return - } - -ConsumingLoop: - for { - select { - case amqpMsg := <-amqpMsgs: - if err := s.processMessage(ctx, amqpMsg, s.out, s.logFields); err != nil { - s.logger.Error("Processing message failed, sending nack", err, s.logFields) - - if err := s.nackMsg(amqpMsg); err != nil { - s.logger.Error("Cannot nack message", err, s.logFields) - - // something went really wrong when we cannot nack, let's reconnect - break ConsumingLoop - } - } - continue ConsumingLoop - - case <-s.notifyCloseChannel: - s.logger.Error("Channel closed, stopping ProcessMessages", nil, s.logFields) - break ConsumingLoop - - case <-s.closing: - s.logger.Info("Closing from Subscriber received", s.logFields) - break ConsumingLoop - - case <-ctx.Done(): - s.logger.Info("Closing from ctx received", s.logFields) - break ConsumingLoop - } - } -} - -func (s *subscription) createConsumer(queueName string, channel *amqp.Channel) (<-chan amqp.Delivery, error) { - amqpMsgs, err := channel.Consume( - queueName, - s.config.Consume.Consumer, - false, // autoAck must be set to false - acks are managed by Watermill - s.config.Consume.Exclusive, - s.config.Consume.NoLocal, - s.config.Consume.NoWait, - s.config.Consume.Arguments, - ) - if err != nil { - return nil, errors.Wrap(err, "cannot consume from channel") - } - - return amqpMsgs, nil -} - -func (s *subscription) processMessage( - ctx context.Context, - amqpMsg amqp.Delivery, - out chan *message.Message, - logFields watermill.LogFields, -) error { - msg, err := s.config.Marshaler.Unmarshal(amqpMsg) - if err != nil { - return err - } - - ctx, cancelCtx := context.WithCancel(ctx) - msg.SetContext(ctx) - defer cancelCtx() - - msgLogFields := logFields.Add(watermill.LogFields{"message_uuid": msg.UUID}) - s.logger.Trace("Unmarshaled message", msgLogFields) - - select { - case <-s.closing: - s.logger.Info("Message not consumed, pub/sub is closing", msgLogFields) - return s.nackMsg(amqpMsg) - case out <- msg: - s.logger.Trace("Message sent to consumer", msgLogFields) - } - - select { - case <-s.closing: - s.logger.Trace("Closing pub/sub, message discarded before ack", msgLogFields) - return s.nackMsg(amqpMsg) - case <-msg.Acked(): - s.logger.Trace("Message Acked", msgLogFields) - return amqpMsg.Ack(false) - case <-msg.Nacked(): - s.logger.Trace("Message Nacked", msgLogFields) - return s.nackMsg(amqpMsg) - } -} - -func (s *subscription) nackMsg(amqpMsg amqp.Delivery) error { - return amqpMsg.Nack(false, !s.config.Consume.NoRequeueOnNack) -} diff --git a/message/infrastructure/amqp/topology_builder.go b/message/infrastructure/amqp/topology_builder.go deleted file mode 100644 index 536387b2c..000000000 --- a/message/infrastructure/amqp/topology_builder.go +++ /dev/null @@ -1,70 +0,0 @@ -package amqp - -import ( - "github.com/ThreeDotsLabs/watermill" - "github.com/pkg/errors" - "github.com/streadway/amqp" -) - -// TopologyBuilder is responsible for declaring exchange, queues and queues binding. -// -// Default TopologyBuilder is DefaultTopologyBuilder. -// If you need custom built topology, you should implement your own TopologyBuilder and pass it to the amqp.Config: -// -// config := NewDurablePubSubConfig() -// config.TopologyBuilder = MyProCustomBuilder{} -// -type TopologyBuilder interface { - BuildTopology(channel *amqp.Channel, queueName string, exchangeName string, config Config, logger watermill.LoggerAdapter) error - ExchangeDeclare(channel *amqp.Channel, exchangeName string, config Config) error -} - -type DefaultTopologyBuilder struct{} - -func (builder DefaultTopologyBuilder) ExchangeDeclare(channel *amqp.Channel, exchangeName string, config Config) error { - return channel.ExchangeDeclare( - exchangeName, - config.Exchange.Type, - config.Exchange.Durable, - config.Exchange.AutoDeleted, - config.Exchange.Internal, - config.Exchange.NoWait, - config.Exchange.Arguments, - ) -} - -func (builder *DefaultTopologyBuilder) BuildTopology(channel *amqp.Channel, queueName string, exchangeName string, config Config, logger watermill.LoggerAdapter) error { - if _, err := channel.QueueDeclare( - queueName, - config.Queue.Durable, - config.Queue.AutoDelete, - config.Queue.Exclusive, - config.Queue.NoWait, - config.Queue.Arguments, - ); err != nil { - return errors.Wrap(err, "cannot declare queue") - } - - logger.Debug("Queue declared", nil) - - if exchangeName == "" { - logger.Debug("No exchange to declare", nil) - return nil - } - if err := builder.ExchangeDeclare(channel, exchangeName, config); err != nil { - return errors.Wrap(err, "cannot declare exchange") - } - - logger.Debug("Exchange declared", nil) - - if err := channel.QueueBind( - queueName, - config.QueueBind.GenerateRoutingKey(queueName), - exchangeName, - config.QueueBind.NoWait, - config.QueueBind.Arguments, - ); err != nil { - return errors.Wrap(err, "cannot bind queue") - } - return nil -} diff --git a/message/infrastructure/googlecloud/marshaler.go b/message/infrastructure/googlecloud/marshaler.go deleted file mode 100644 index 5b557a232..000000000 --- a/message/infrastructure/googlecloud/marshaler.go +++ /dev/null @@ -1,72 +0,0 @@ -package googlecloud - -import ( - "cloud.google.com/go/pubsub" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill/message" -) - -// Marshaler transforms a Waterfall Message into the Google Cloud client library Message. -type Marshaler interface { - Marshal(topic string, msg *message.Message) (*pubsub.Message, error) -} - -// Unmarshaler transforms a Google Cloud client library Message into the Waterfall Message. -type Unmarshaler interface { - Unmarshal(*pubsub.Message) (*message.Message, error) -} - -// UUIDHeaderKey is the key of the Pub/Sub attribute that carries Waterfall UUID. -const UUIDHeaderKey = "_watermill_message_uuid" - -// DefaultMarshalerUnmarshaler implements Marshaler and Unmarshaler in the following way: -// All Google Cloud Pub/Sub attributes are equivalent to Waterfall Message metadata. -// Waterfall Message UUID is equivalent to an attribute with `UUIDHeaderKey` as key. -type DefaultMarshalerUnmarshaler struct{} - -type MarshalerUnmarshaler interface { - Marshaler - Unmarshaler -} - -func (m DefaultMarshalerUnmarshaler) Marshal(topic string, msg *message.Message) (*pubsub.Message, error) { - if value := msg.Metadata.Get(UUIDHeaderKey); value != "" { - return nil, errors.Errorf("metadata %s is reserved by watermill for message UUID", UUIDHeaderKey) - } - - attributes := map[string]string{ - UUIDHeaderKey: msg.UUID, - } - - for k, v := range msg.Metadata { - attributes[k] = v - } - - marshaledMsg := &pubsub.Message{ - Data: msg.Payload, - Attributes: attributes, - } - - return marshaledMsg, nil -} - -func (u DefaultMarshalerUnmarshaler) Unmarshal(pubsubMsg *pubsub.Message) (*message.Message, error) { - metadata := make(message.Metadata, len(pubsubMsg.Attributes)) - - var id string - for k, attr := range pubsubMsg.Attributes { - if k == UUIDHeaderKey { - id = attr - continue - } - metadata.Set(k, attr) - } - - metadata.Set("publishTime", pubsubMsg.PublishTime.String()) - - msg := message.NewMessage(id, pubsubMsg.Data) - msg.Metadata = metadata - - return msg, nil -} diff --git a/message/infrastructure/googlecloud/provider.go b/message/infrastructure/googlecloud/provider.go deleted file mode 100644 index a35fb0f1c..000000000 --- a/message/infrastructure/googlecloud/provider.go +++ /dev/null @@ -1,6 +0,0 @@ -package googlecloud - -const ( - // ProviderName identifies the provider as Google Cloud Pub/Sub in logs. - ProviderName = "google_cloud_pubsub" -) diff --git a/message/infrastructure/googlecloud/publisher.go b/message/infrastructure/googlecloud/publisher.go deleted file mode 100644 index 4386ff594..000000000 --- a/message/infrastructure/googlecloud/publisher.go +++ /dev/null @@ -1,199 +0,0 @@ -package googlecloud - -import ( - "context" - "sync" - "time" - - "cloud.google.com/go/pubsub" - "github.com/pkg/errors" - "google.golang.org/api/option" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -var ( - // ErrPublisherClosed happens when trying to publish to a topic while the publisher is closed or closing. - ErrPublisherClosed = errors.New("publisher is closed") - // ErrTopicDoesNotExist happens when trying to publish or subscribe to a topic that doesn't exist. - ErrTopicDoesNotExist = errors.New("topic does not exist") -) - -type Publisher struct { - topics map[string]*pubsub.Topic - topicsLock sync.RWMutex - closed bool - - client *pubsub.Client - config PublisherConfig - - logger watermill.LoggerAdapter -} - -type PublisherConfig struct { - // ProjectID is the Google Cloud Engine project ID. - ProjectID string - - // If false (default), `Publisher` tries to create a topic if there is none with the requested name. - // Otherwise, trying to subscribe to non-existent subscription results in `ErrTopicDoesNotExist`. - DoNotCreateTopicIfMissing bool - - // ConnectTimeout defines the timeout for connecting to Pub/Sub - ConnectTimeout time.Duration - // PublishTimeout defines the timeout for publishing messages. - PublishTimeout time.Duration - - // Settings for cloud.google.com/go/pubsub client library. - PublishSettings *pubsub.PublishSettings - ClientOptions []option.ClientOption - - Marshaler Marshaler -} - -func (c *PublisherConfig) setDefaults() { - if c.Marshaler == nil { - c.Marshaler = DefaultMarshalerUnmarshaler{} - } - if c.ConnectTimeout == 0 { - c.ConnectTimeout = time.Second * 10 - } - if c.PublishTimeout == 0 { - c.PublishTimeout = time.Second * 5 - } -} - -func NewPublisher(config PublisherConfig, logger watermill.LoggerAdapter) (*Publisher, error) { - config.setDefaults() - - if logger == nil { - logger = watermill.NopLogger{} - } - - pub := &Publisher{ - topics: map[string]*pubsub.Topic{}, - config: config, - logger: logger, - } - - ctx, cancel := context.WithTimeout(context.Background(), config.ConnectTimeout) - defer cancel() - - var err error - pub.client, err = pubsub.NewClient(ctx, config.ProjectID, config.ClientOptions...) - if err != nil { - return nil, err - } - - return pub, nil -} - -// Publish publishes a set of messages on a Google Cloud Pub/Sub topic. -// It blocks until all the messages are successfully published or an error occurred. -// -// To receive messages published to a topic, you must create a subscription to that topic. -// Only messages published to the topic after the subscription is created are available to subscriber applications. -// -// See https://cloud.google.com/pubsub/docs/publisher to find out more about how Google Cloud Pub/Sub Publishers work. -func (p *Publisher) Publish(topic string, messages ...*message.Message) error { - if p.closed { - return ErrPublisherClosed - } - - ctx, cancel := context.WithTimeout(context.Background(), p.config.PublishTimeout) - defer cancel() - - t, err := p.topic(ctx, topic) - if err != nil { - return err - } - - logFields := make(watermill.LogFields, 2) - logFields["topic"] = topic - - for _, msg := range messages { - logFields["message_uuid"] = msg.UUID - p.logger.Trace("Sending message to Google PubSub", logFields) - - googlecloudMsg, err := p.config.Marshaler.Marshal(topic, msg) - if err != nil { - return errors.Wrapf(err, "cannot marshal message %s", msg.UUID) - } - - result := t.Publish(ctx, googlecloudMsg) - <-result.Ready() - - _, err = result.Get(ctx) - if err != nil { - return errors.Wrapf(err, "publishing message %s failed", msg.UUID) - } - - p.logger.Trace("Message published to Google PubSub", logFields) - } - - return nil -} - -// Close notifies the Publisher to stop processing messages, send all the remaining messages and close the connection. -func (p *Publisher) Close() error { - p.logger.Info("Closing Google PubSub publisher", nil) - defer p.logger.Info("Google PubSub publisher closed", nil) - - if p.closed { - return nil - } - p.closed = true - - p.topicsLock.Lock() - for _, t := range p.topics { - t.Stop() - } - p.topicsLock.Unlock() - - return p.client.Close() -} - -func (p *Publisher) topic(ctx context.Context, topic string) (t *pubsub.Topic, err error) { - p.topicsLock.RLock() - t, ok := p.topics[topic] - p.topicsLock.RUnlock() - if ok { - return t, nil - } - - p.topicsLock.Lock() - defer func() { - if err == nil { - p.topics[topic] = t - } - p.topicsLock.Unlock() - }() - - t = p.client.Topic(topic) - - // todo: theoretically, one could want different publish settings per topic, which is supported by the client lib - // different instances of publisher may be used then - if p.config.PublishSettings != nil { - t.PublishSettings = *p.config.PublishSettings - } - - exists, err := t.Exists(ctx) - if err != nil { - return nil, errors.Wrapf(err, "could not check if topic %s exists", topic) - } - - if exists { - return t, nil - } - - if p.config.DoNotCreateTopicIfMissing { - return nil, errors.Wrap(ErrTopicDoesNotExist, topic) - } - - t, err = p.client.CreateTopic(ctx, topic) - if err != nil { - return nil, errors.Wrapf(err, "could not create topic %s", topic) - } - - return t, nil -} diff --git a/message/infrastructure/googlecloud/pubsub_bench_test.go b/message/infrastructure/googlecloud/pubsub_bench_test.go deleted file mode 100644 index d791f86db..000000000 --- a/message/infrastructure/googlecloud/pubsub_bench_test.go +++ /dev/null @@ -1,36 +0,0 @@ -package googlecloud_test - -import ( - "testing" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/googlecloud" -) - -// Run `docker-compose up` and set PUBSUB_EMULATOR_HOST=localhost:8085 for this to work - -func BenchmarkSubscriber(b *testing.B) { - infrastructure.BenchSubscriber(b, func(n int) (message.Publisher, message.Subscriber) { - logger := watermill.NopLogger{} - - publisher, err := googlecloud.NewPublisher( - googlecloud.PublisherConfig{}, - logger, - ) - if err != nil { - panic(err) - } - - subscriber, err := googlecloud.NewSubscriber( - googlecloud.SubscriberConfig{}, - logger, - ) - if err != nil { - panic(err) - } - - return publisher, subscriber - }) -} diff --git a/message/infrastructure/googlecloud/pubsub_stress_test.go b/message/infrastructure/googlecloud/pubsub_stress_test.go deleted file mode 100644 index 03c82ba05..000000000 --- a/message/infrastructure/googlecloud/pubsub_stress_test.go +++ /dev/null @@ -1,25 +0,0 @@ -// +build stress - -package googlecloud_test - -import ( - "testing" - - "github.com/ThreeDotsLabs/watermill/message/infrastructure" -) - -// Run `docker-compose up` and set PUBSUB_EMULATOR_HOST=localhost:8085 for this to work - -func TestPublishSubscribe_stress(t *testing.T) { - infrastructure.TestPubSubStressTest( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - }, - createPubSub, - createPubSubWithSubscriptionName, - ) -} diff --git a/message/infrastructure/googlecloud/pubsub_test.go b/message/infrastructure/googlecloud/pubsub_test.go deleted file mode 100644 index 50859293a..000000000 --- a/message/infrastructure/googlecloud/pubsub_test.go +++ /dev/null @@ -1,138 +0,0 @@ -package googlecloud_test - -import ( - "context" - "fmt" - "math/rand" - "testing" - "time" - - "cloud.google.com/go/pubsub" - "github.com/pkg/errors" - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/googlecloud" -) - -// Run `docker-compose up` and set PUBSUB_EMULATOR_HOST=localhost:8085 for this to work - -func newPubSub(t *testing.T, marshaler googlecloud.MarshalerUnmarshaler, subscriptionName googlecloud.SubscriptionNameFn) (message.Publisher, message.Subscriber) { - logger := watermill.NewStdLogger(true, true) - - publisher, err := googlecloud.NewPublisher( - googlecloud.PublisherConfig{ - Marshaler: marshaler, - }, - logger, - ) - require.NoError(t, err) - - subscriber, err := googlecloud.NewSubscriber( - googlecloud.SubscriberConfig{ - GenerateSubscriptionName: subscriptionName, - SubscriptionConfig: pubsub.SubscriptionConfig{ - RetainAckedMessages: false, - }, - Unmarshaler: marshaler, - }, - logger, - ) - require.NoError(t, err) - - return publisher, subscriber -} - -func createPubSubWithSubscriptionName(t *testing.T, subscriptionName string) (message.Publisher, message.Subscriber) { - return newPubSub(t, googlecloud.DefaultMarshalerUnmarshaler{}, - googlecloud.TopicSubscriptionNameWithSuffix(subscriptionName), - ) -} - -func createPubSub(t *testing.T) (message.Publisher, message.Subscriber) { - return newPubSub(t, googlecloud.DefaultMarshalerUnmarshaler{}, googlecloud.TopicSubscriptionName) -} - -func TestPublishSubscribe(t *testing.T) { - infrastructure.TestPubSub( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - }, - createPubSub, - createPubSubWithSubscriptionName, - ) -} - -func TestSubscriberUnexpectedTopicForSubscription(t *testing.T) { - rand.Seed(time.Now().Unix()) - testNumber := rand.Int() - logger := watermill.NewStdLogger(true, true) - - subNameFn := func(topic string) string { - return fmt.Sprintf("sub_%d", testNumber) - } - - sub1, err := googlecloud.NewSubscriber(googlecloud.SubscriberConfig{ - GenerateSubscriptionName: subNameFn, - }, logger) - require.NoError(t, err) - - topic1 := fmt.Sprintf("topic1_%d", testNumber) - - sub2, err := googlecloud.NewSubscriber(googlecloud.SubscriberConfig{ - GenerateSubscriptionName: subNameFn, - }, logger) - require.NoError(t, err) - topic2 := fmt.Sprintf("topic2_%d", testNumber) - - howManyMessages := 100 - - ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) - defer cancel() - - messagesTopic1, err := sub1.Subscribe(ctx, topic1) - require.NoError(t, err) - - allMessagesReceived := make(chan struct{}) - go func() { - defer close(allMessagesReceived) - messagesReceived := 0 - for range messagesTopic1 { - messagesReceived++ - if messagesReceived == howManyMessages { - return - } - } - }() - - produceMessages(t, topic1, howManyMessages) - - select { - case <-allMessagesReceived: - t.Log("All topic 1 messages received") - case <-ctx.Done(): - t.Fatal("Test timed out") - } - - _, err = sub2.Subscribe(ctx, topic2) - require.Equal(t, googlecloud.ErrUnexpectedTopic, errors.Cause(err)) -} - -func produceMessages(t *testing.T, topic string, howMany int) { - pub, err := googlecloud.NewPublisher(googlecloud.PublisherConfig{}, nil) - require.NoError(t, err) - defer pub.Close() - - messages := make([]*message.Message, howMany) - for i := 0; i < howMany; i++ { - messages[i] = message.NewMessage(watermill.NewUUID(), []byte{}) - } - - require.NoError(t, pub.Publish(topic, messages...)) -} diff --git a/message/infrastructure/googlecloud/subscriber.go b/message/infrastructure/googlecloud/subscriber.go deleted file mode 100644 index da33c71d5..000000000 --- a/message/infrastructure/googlecloud/subscriber.go +++ /dev/null @@ -1,402 +0,0 @@ -package googlecloud - -import ( - "context" - "fmt" - "sync" - "time" - - "cloud.google.com/go/pubsub" - "github.com/pkg/errors" - "google.golang.org/api/option" - "google.golang.org/grpc" - "google.golang.org/grpc/codes" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -var ( - // ErrSubscriberClosed happens when trying to subscribe to a new topic while the subscriber is closed or closing. - ErrSubscriberClosed = errors.New("subscriber is closed") - // ErrSubscriptionDoesNotExist happens when trying to use a subscription that does not exist. - ErrSubscriptionDoesNotExist = errors.New("subscription does not exist") - // ErrUnexpectedTopic happens when the subscription resolved from SubscriptionNameFn is for a different topic than expected. - ErrUnexpectedTopic = errors.New("requested subscription already exists, but for other topic than expected") -) - -// Subscriber attaches to a Google Cloud Pub/Sub subscription and returns a Go channel with messages from the topic. -// Be aware that in Google Cloud Pub/Sub, only messages sent after the subscription was created can be consumed. -// -// For more info on how Google Cloud Pub/Sub Subscribers work, check https://cloud.google.com/pubsub/docs/subscriber. -type Subscriber struct { - closing chan struct{} - closed bool - - allSubscriptionsWaitGroup sync.WaitGroup - activeSubscriptions map[string]*pubsub.Subscription - activeSubscriptionsLock sync.RWMutex - - client *pubsub.Client - config SubscriberConfig - - logger watermill.LoggerAdapter -} - -type SubscriberConfig struct { - // GenerateSubscriptionName generates subscription name for a given topic. - // The subscription connects the topic to a subscriber application that receives and processes - // messages published to the topic. - // - // By default, subscriptions expire after 31 days of inactivity. - // - // A topic can have multiple subscriptions, but a given subscription belongs to a single topic. - GenerateSubscriptionName SubscriptionNameFn - - // ProjectID is the Google Cloud Engine project ID. - ProjectID string - - // If false (default), `Subscriber` tries to create a subscription if there is none with the requested name. - // Otherwise, trying to use non-existent subscription results in `ErrSubscriptionDoesNotExist`. - DoNotCreateSubscriptionIfMissing bool - - // If false (default), `Subscriber` tries to create a topic if there is none with the requested name - // and it is trying to create a new subscription with this topic name. - // Otherwise, trying to create a subscription on non-existent topic results in `ErrTopicDoesNotExist`. - DoNotCreateTopicIfMissing bool - - // ConnectTimeout defines the timeout for connecting to Pub/Sub - ConnectTimeout time.Duration - // InitializeTimeout defines the timeout for initializing topics. - InitializeTimeout time.Duration - - // Settings for cloud.google.com/go/pubsub client library. - ReceiveSettings pubsub.ReceiveSettings - SubscriptionConfig pubsub.SubscriptionConfig - ClientOptions []option.ClientOption - - // Unmarshaler transforms the client library format into watermill/message.Message. - // Use a custom unmarshaler if needed, otherwise the default Unmarshaler should cover most use cases. - Unmarshaler Unmarshaler -} - -type SubscriptionNameFn func(topic string) string - -// TopicSubscriptionName uses the topic name as the subscription name. -func TopicSubscriptionName(topic string) string { - return topic -} - -// TopicSubscriptionNameWithSuffix uses the topic name with a chosen suffix as the subscription name. -func TopicSubscriptionNameWithSuffix(suffix string) SubscriptionNameFn { - return func(topic string) string { - return topic + suffix - } -} - -func (c *SubscriberConfig) setDefaults() { - if c.GenerateSubscriptionName == nil { - c.GenerateSubscriptionName = TopicSubscriptionName - } - if c.ConnectTimeout == 0 { - c.ConnectTimeout = time.Second * 10 - } - if c.InitializeTimeout == 0 { - c.InitializeTimeout = time.Second * 10 - } - if c.Unmarshaler == nil { - c.Unmarshaler = DefaultMarshalerUnmarshaler{} - } -} - -func NewSubscriber( - config SubscriberConfig, - logger watermill.LoggerAdapter, -) (*Subscriber, error) { - config.setDefaults() - - ctx, cancel := context.WithTimeout(context.Background(), config.ConnectTimeout) - defer cancel() - - client, err := pubsub.NewClient(ctx, config.ProjectID, config.ClientOptions...) - if err != nil { - return nil, err - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - return &Subscriber{ - closing: make(chan struct{}, 1), - closed: false, - - allSubscriptionsWaitGroup: sync.WaitGroup{}, - activeSubscriptions: map[string]*pubsub.Subscription{}, - activeSubscriptionsLock: sync.RWMutex{}, - - client: client, - config: config, - - logger: logger, - }, nil -} - -// Subscribe consumes Google Cloud Pub/Sub and outputs them as Waterfall Message objects on the returned channel. -// -// In Google Cloud Pub/Sub, it is impossible to subscribe directly to a topic. Instead, a *subscription* is used. -// Each subscription has one topic, but there may be multiple subscriptions to one topic (with different names). -// -// The `topic` argument is transformed into subscription name with the configured `GenerateSubscriptionName` function. -// By default, if the subscription or topic don't exist, the are created. This behavior may be changed in the config. -// -// Be aware that in Google Cloud Pub/Sub, only messages sent after the subscription was created can be consumed. -// -// See https://cloud.google.com/pubsub/docs/subscriber to find out more about how Google Cloud Pub/Sub Subscriptions work. -func (s *Subscriber) Subscribe(ctx context.Context, topic string) (<-chan *message.Message, error) { - if s.closed { - return nil, ErrSubscriberClosed - } - - ctx, cancel := context.WithCancel(ctx) - subscriptionName := s.config.GenerateSubscriptionName(topic) - - logFields := watermill.LogFields{ - "provider": ProviderName, - "topic": topic, - "subscription_name": subscriptionName, - } - s.logger.Info("Subscribing to Google Cloud PubSub topic", logFields) - - output := make(chan *message.Message, 0) - - sub, err := s.subscription(ctx, subscriptionName, topic) - if err != nil { - return nil, err - } - - receiveFinished := make(chan struct{}) - s.allSubscriptionsWaitGroup.Add(1) - go func() { - err := s.receive(ctx, sub, logFields, output) - if err != nil { - s.logger.Error("Receiving messages failed", err, logFields) - } - close(receiveFinished) - }() - - go func() { - <-s.closing - s.logger.Debug("Closing message consumer", logFields) - cancel() - }() - - go func() { - <-receiveFinished - close(output) - s.allSubscriptionsWaitGroup.Done() - }() - - return output, nil -} - -func (s *Subscriber) SubscribeInitialize(topic string) (err error) { - ctx, cancel := context.WithTimeout(context.Background(), s.config.InitializeTimeout) - defer cancel() - - subscriptionName := s.config.GenerateSubscriptionName(topic) - logFields := watermill.LogFields{ - "provider": ProviderName, - "topic": topic, - "subscription_name": subscriptionName, - } - s.logger.Info("Initializing subscription to Google Cloud PubSub topic", logFields) - - if _, err := s.subscription(ctx, subscriptionName, topic); err != nil { - return err - } - - return nil -} - -// Close notifies the Subscriber to stop processing messages on all subscriptions, close all the output channels -// and terminate the connection. -func (s *Subscriber) Close() error { - if s.closed { - return nil - } - - s.closed = true - close(s.closing) - s.allSubscriptionsWaitGroup.Wait() - - err := s.client.Close() - if err != nil { - return err - } - - s.logger.Debug("Google Cloud PubSub subscriber closed", nil) - return nil -} - -func (s *Subscriber) receive( - ctx context.Context, - sub *pubsub.Subscription, - subcribeLogFields watermill.LogFields, - output chan *message.Message, -) error { - err := sub.Receive(ctx, func(ctx context.Context, pubsubMsg *pubsub.Message) { - logFields := subcribeLogFields.Copy() - - msg, err := s.config.Unmarshaler.Unmarshal(pubsubMsg) - if err != nil { - s.logger.Error("Could not unmarshal Google Cloud PubSub message", err, logFields) - pubsubMsg.Nack() - return - } - logFields["message_uuid"] = msg.UUID - - ctx, cancelCtx := context.WithCancel(ctx) - msg.SetContext(ctx) - defer cancelCtx() - - select { - case <-s.closing: - s.logger.Info( - "Message not consumed, subscriber is closing", - logFields, - ) - pubsubMsg.Nack() - return - case <-ctx.Done(): - s.logger.Info( - "Message not consumed, ctx canceled", - logFields, - ) - pubsubMsg.Nack() - return - case output <- msg: - // message consumed, wait for ack (or nack) - } - - select { - case <-s.closing: - pubsubMsg.Nack() - s.logger.Trace( - "Closing, nacking message", - logFields, - ) - case <-ctx.Done(): - pubsubMsg.Nack() - s.logger.Trace( - "Ctx done, nacking message", - logFields, - ) - case <-msg.Acked(): - s.logger.Trace( - "Msg acked", - logFields, - ) - pubsubMsg.Ack() - case <-msg.Nacked(): - pubsubMsg.Nack() - s.logger.Trace( - "Msg nacked", - logFields, - ) - } - }) - - if err != nil && !s.closed { - return err - } - - return nil -} - -// subscription obtains a subscription object. -// If subscription doesn't exist on PubSub, create it, unless config variable DoNotCreateSubscriptionWhenMissing is set. -func (s *Subscriber) subscription(ctx context.Context, subscriptionName, topicName string) (sub *pubsub.Subscription, err error) { - s.activeSubscriptionsLock.RLock() - sub, ok := s.activeSubscriptions[subscriptionName] - s.activeSubscriptionsLock.RUnlock() - if ok { - return sub, nil - } - - s.activeSubscriptionsLock.Lock() - defer s.activeSubscriptionsLock.Unlock() - defer func() { - if err == nil { - s.activeSubscriptions[subscriptionName] = sub - } - }() - - sub = s.client.Subscription(subscriptionName) - exists, err := sub.Exists(ctx) - if err != nil { - return nil, errors.Wrapf(err, "could not check if subscription %s exists", subscriptionName) - } - - if exists { - return s.existingSubscription(ctx, sub, topicName) - } - - if s.config.DoNotCreateSubscriptionIfMissing { - return nil, errors.Wrap(ErrSubscriptionDoesNotExist, subscriptionName) - } - - t := s.client.Topic(topicName) - exists, err = t.Exists(ctx) - if err != nil { - return nil, errors.Wrapf(err, "could not check if topic %s exists", topicName) - } - - if !exists && s.config.DoNotCreateTopicIfMissing { - return nil, errors.Wrap(ErrTopicDoesNotExist, topicName) - } - - if !exists { - t, err = s.client.CreateTopic(ctx, topicName) - - if grpc.Code(err) == codes.AlreadyExists { - s.logger.Debug("Topic already exists", watermill.LogFields{"topic": topicName}) - t = s.client.Topic(topicName) - } else if err != nil { - return nil, errors.Wrap(err, "could not create topic for subscription") - } - } - - config := s.config.SubscriptionConfig - config.Topic = t - - sub, err = s.client.CreateSubscription(ctx, subscriptionName, config) - if grpc.Code(err) == codes.AlreadyExists { - s.logger.Debug("Subscription already exists", watermill.LogFields{"subscription": subscriptionName}) - sub = s.client.Subscription(subscriptionName) - } else if err != nil { - return nil, errors.Wrap(err, "cannot create subscription") - } - - sub.ReceiveSettings = s.config.ReceiveSettings - - return sub, nil -} - -func (s Subscriber) existingSubscription(ctx context.Context, sub *pubsub.Subscription, topic string) (*pubsub.Subscription, error) { - config, err := sub.Config(ctx) - if err != nil { - return nil, errors.Wrap(err, "could not fetch config for existing subscription") - } - - fullyQualifiedTopicName := fmt.Sprintf("projects/%s/topics/%s", s.config.ProjectID, topic) - - if config.Topic.String() != fullyQualifiedTopicName { - return nil, errors.Wrap( - ErrUnexpectedTopic, - fmt.Sprintf("topic of existing sub: %s; expecting: %s", config.Topic.String(), fullyQualifiedTopicName), - ) - } - - return sub, nil -} diff --git a/message/infrastructure/http/marshall_message_test.go b/message/infrastructure/http/marshall_message_test.go deleted file mode 100644 index 8dfa1be1f..000000000 --- a/message/infrastructure/http/marshall_message_test.go +++ /dev/null @@ -1,47 +0,0 @@ -package http_test - -import ( - "encoding/json" - "io/ioutil" - "net/http" - "testing" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill/message" - watermill_http "github.com/ThreeDotsLabs/watermill/message/infrastructure/http" -) - -var ( - metadataKey = "key" - metadataValue = "value" - msgUUID = "1" - msgPayload = []byte("payload") - msg *message.Message -) - -func init() { - msg = message.NewMessage(msgUUID, msgPayload) - msg.Metadata.Set(metadataKey, metadataValue) -} - -func TestDefaultMarshalMessageFunc(t *testing.T) { - url := "http://some-server.domain/topic" - req, err := watermill_http.DefaultMarshalMessageFunc(url, msg) - require.NoError(t, err) - - assert.Equal(t, http.MethodPost, req.Method) - assert.Equal(t, msgUUID, req.Header.Get(watermill_http.HeaderUUID)) - - assert.Equal(t, url, req.URL.String()) - - body, err := ioutil.ReadAll(req.Body) - require.NoError(t, err) - assert.Equal(t, msgPayload, body) - - metadata := message.Metadata{} - err = json.Unmarshal([]byte(req.Header.Get(watermill_http.HeaderMetadata)), &metadata) - require.NoError(t, err) - assert.Equal(t, metadataValue, metadata.Get(metadataKey)) -} diff --git a/message/infrastructure/http/provider.go b/message/infrastructure/http/provider.go deleted file mode 100644 index a4e1128bc..000000000 --- a/message/infrastructure/http/provider.go +++ /dev/null @@ -1,7 +0,0 @@ -package http - -const ( - HeaderUUID = "Message-Uuid" - HeaderMetadata = "Message-Metadata" - ProviderName = "http" -) diff --git a/message/infrastructure/http/publisher.go b/message/infrastructure/http/publisher.go deleted file mode 100644 index f5ce20aea..000000000 --- a/message/infrastructure/http/publisher.go +++ /dev/null @@ -1,165 +0,0 @@ -package http - -import ( - "bytes" - "encoding/json" - "io/ioutil" - "net/http" - - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -var ( - // ErrPublisherClosed happens when trying to publish to a topic while the publisher is closed or closing. - ErrPublisherClosed = errors.New("publisher is closed") - ErrNoMarshalFunc = errors.New("marshal function is missing") - ErrErrorResponse = errors.New("server responded with error status") -) - -// MarshalMessageFunc transforms the message into a HTTP request to be sent to the specified url. -type MarshalMessageFunc func(url string, msg *message.Message) (*http.Request, error) - -// DefaultMarshalMessageFunc transforms the message into a HTTP POST request. -// It encodes the UUID and Metadata in request headers. -func DefaultMarshalMessageFunc(url string, msg *message.Message) (*http.Request, error) { - req, err := http.NewRequest(http.MethodPost, url, bytes.NewBuffer(msg.Payload)) - if err != nil { - return nil, err - } - - req.Header.Set(HeaderUUID, msg.UUID) - - metadataJson, err := json.Marshal(msg.Metadata) - if err != nil { - return nil, errors.Wrap(err, "could not marshal metadata to JSON") - } - req.Header.Set(HeaderMetadata, string(metadataJson)) - return req, nil -} - -type PublisherConfig struct { - MarshalMessageFunc MarshalMessageFunc - Client *http.Client - // if false (default), when server responds with error (>=400) to the webhook request, the response body is logged. - DoNotLogResponseBodyOnServerError bool -} - -func (c *PublisherConfig) setDefaults() { - if c.Client == nil { - c.Client = http.DefaultClient - } -} - -func (c PublisherConfig) validate() error { - if c.MarshalMessageFunc == nil { - return ErrNoMarshalFunc - } - - return nil -} - -type Publisher struct { - logger watermill.LoggerAdapter - config PublisherConfig - - closed bool -} - -// NewPublisher creates a new Publisher. -// It publishes the received messages as HTTP requests. -// The URL, method and payload of the request are determined by the configured MarshalMessageFunc. -func NewPublisher(config PublisherConfig, logger watermill.LoggerAdapter) (*Publisher, error) { - config.setDefaults() - if err := config.validate(); err != nil { - return nil, errors.Wrap(err, "invalid Publisher config") - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - return &Publisher{ - config: config, - logger: logger, - }, nil -} - -func (p *Publisher) Publish(topic string, messages ...*message.Message) error { - if p.closed { - return ErrPublisherClosed - } - - for _, msg := range messages { - req, err := p.config.MarshalMessageFunc(topic, msg) - if err != nil { - return errors.Wrapf(err, "cannot marshal message %s", msg.UUID) - } - - logFields := watermill.LogFields{ - "uuid": msg.UUID, - "url": req.URL.String(), - "method": req.Method, - "provider": ProviderName, - } - - p.logger.Trace("Publishing message", logFields) - - resp, err := p.config.Client.Do(req) - if err != nil { - return errors.Wrapf(err, "publishing message %s failed", msg.UUID) - } - - if err = p.handleResponseBody(resp, logFields); err != nil { - return err - } - - if resp.StatusCode >= http.StatusBadRequest { - return errors.Wrap(ErrErrorResponse, resp.Status) - } - - if err != nil { - return errors.Wrapf(err, "could not close response body for message %s", msg.UUID) - } - - p.logger.Trace("Message published", logFields) - } - - return nil -} - -func (p *Publisher) Close() error { - if p.closed { - return nil - } - - p.closed = true - return nil -} - -func (p Publisher) handleResponseBody(resp *http.Response, logFields watermill.LogFields) error { - defer resp.Body.Close() - - if resp.StatusCode < http.StatusBadRequest { - return nil - } - - if p.config.DoNotLogResponseBodyOnServerError { - return nil - } - - body, err := ioutil.ReadAll(resp.Body) - if err != nil { - return errors.Wrap(err, "could not read response body") - } - - logFields = logFields.Add(watermill.LogFields{ - "http_status": resp.StatusCode, - "http_response": string(body), - }) - p.logger.Info("Server responded with error", logFields) - - return nil -} diff --git a/message/infrastructure/http/pubsub_test.go b/message/infrastructure/http/pubsub_test.go deleted file mode 100644 index b3b84fcb2..000000000 --- a/message/infrastructure/http/pubsub_test.go +++ /dev/null @@ -1,97 +0,0 @@ -package http_test - -import ( - "context" - "fmt" - "testing" - "time" - - "github.com/ThreeDotsLabs/watermill/message/subscriber" - - "github.com/ThreeDotsLabs/watermill/message" - - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/http" -) - -func createPubSub(t *testing.T) (*http.Publisher, *http.Subscriber) { - logger := watermill.NewStdLogger(true, true) - - // use any free port to allow parallel tests - sub, err := http.NewSubscriber(":0", http.SubscriberConfig{}, logger) - require.NoError(t, err) - - publisherConf := http.PublisherConfig{ - MarshalMessageFunc: http.DefaultMarshalMessageFunc, - } - - pub, err := http.NewPublisher(publisherConf, logger) - require.NoError(t, err) - - return pub, sub -} - -func TestPublishSubscribe(t *testing.T) { - t.Skip("todo - fix") - - infrastructure.TestPubSub( - t, - infrastructure.Features{ - ConsumerGroups: false, - ExactlyOnceDelivery: true, - GuaranteedOrder: true, - Persistent: false, - }, - nil, - nil, - ) -} - -func TestHttpPubSub(t *testing.T) { - pub, sub := createPubSub(t) - - defer func() { - require.NoError(t, pub.Close()) - require.NoError(t, sub.Close()) - }() - - msgs, err := sub.Subscribe(context.Background(), "/test") - require.NoError(t, err) - - go sub.StartHTTPServer() - - waitForHTTP(t, sub, time.Second*10) - - receivedMessages := make(chan message.Messages) - - go func() { - received, _ := subscriber.BulkRead(msgs, 100, time.Second*10) - receivedMessages <- received - }() - - publishedMessages := infrastructure.AddSimpleMessages(t, 100, pub, fmt.Sprintf("http://%s/test", sub.Addr())) - - infrastructure.AssertAllMessagesReceived(t, publishedMessages, <-receivedMessages) -} - -func waitForHTTP(t *testing.T, sub *http.Subscriber, timeoutTime time.Duration) { - timeout := time.After(timeoutTime) - for { - addr := sub.Addr() - if addr != nil { - break - } - - select { - case <-timeout: - t.Fatal("server not up") - default: - // ok - } - - time.Sleep(time.Millisecond * 10) - } -} diff --git a/message/infrastructure/http/subscriber.go b/message/infrastructure/http/subscriber.go deleted file mode 100644 index 51396f6c5..000000000 --- a/message/infrastructure/http/subscriber.go +++ /dev/null @@ -1,194 +0,0 @@ -package http - -import ( - "context" - "encoding/json" - "io/ioutil" - "net" - "net/http" - "strings" - "sync" - - "github.com/go-chi/chi" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -type UnmarshalMessageFunc func(topic string, request *http.Request) (*message.Message, error) - -// DefaultUnmarshalMessageFunc retrieves the UUID and Metadata from request headers, -// as encoded by DefaultMarshalMessageFunc. -func DefaultUnmarshalMessageFunc(topic string, req *http.Request) (*message.Message, error) { - body, err := ioutil.ReadAll(req.Body) - if err != nil { - return nil, err - } - - uuid := req.Header.Get(HeaderUUID) - msg := message.NewMessage(uuid, body) - - metadata := req.Header.Get(HeaderMetadata) - if metadata != "" { - err = json.Unmarshal([]byte(metadata), &msg.Metadata) - if err != nil { - return nil, errors.Wrap(err, "could not unmarshal metadata from request") - } - } - - return msg, nil -} - -type SubscriberConfig struct { - Router chi.Router - UnmarshalMessageFunc UnmarshalMessageFunc -} - -func (s *SubscriberConfig) setDefaults() { - if s.Router == nil { - s.Router = chi.NewRouter() - } - - if s.UnmarshalMessageFunc == nil { - s.UnmarshalMessageFunc = DefaultUnmarshalMessageFunc - } -} - -// Subscriber can subscribe to HTTP requests and create Watermill's messages based on them. -type Subscriber struct { - config SubscriberConfig - - server *http.Server - - address net.Addr - addrLock sync.RWMutex - - logger watermill.LoggerAdapter - - outputChannels []chan *message.Message - outputChannelsLock sync.Locker - - closed bool -} - -// NewSubscriber creates new Subscriber. -// -// addr is TCP address to listen on -// -// logger is Watermill's logger. -func NewSubscriber(addr string, config SubscriberConfig, logger watermill.LoggerAdapter) (*Subscriber, error) { - config.setDefaults() - s := &http.Server{Addr: addr, Handler: config.Router} - - if logger == nil { - logger = watermill.NopLogger{} - } - - return &Subscriber{ - config: config, - server: s, - logger: logger, - outputChannels: make([]chan *message.Message, 0), - outputChannelsLock: &sync.Mutex{}, - }, nil -} - -// Subscribe adds HTTP handler which will listen in provided url for messages. -// -// Subscribe needs to be called before `StartHTTPServer`. -// -// When request is sent, it will wait for the `Ack`. When Ack is received 200 HTTP status wil be sent. -// When Nack is sent, 500 HTTP status will be sent. -func (s *Subscriber) Subscribe(ctx context.Context, url string) (<-chan *message.Message, error) { - messages := make(chan *message.Message) - - s.outputChannelsLock.Lock() - s.outputChannels = append(s.outputChannels, messages) - s.outputChannelsLock.Unlock() - - baseLogFields := watermill.LogFields{"url": url, "provider": ProviderName} - - if !strings.HasPrefix(url, "/") { - url = "/" + url - } - - s.config.Router.Post(url, func(w http.ResponseWriter, r *http.Request) { - msg, err := s.config.UnmarshalMessageFunc(url, r) - - ctx, cancelCtx := context.WithCancel(ctx) - msg.SetContext(ctx) - defer cancelCtx() - - if err != nil { - s.logger.Info("Cannot unmarshal message", baseLogFields.Add(watermill.LogFields{"err": err})) - w.WriteHeader(http.StatusBadRequest) - return - } - if msg == nil { - s.logger.Info("No message returned by UnmarshalMessageFunc", baseLogFields) - w.WriteHeader(http.StatusBadRequest) - return - } - logFields := baseLogFields.Add(watermill.LogFields{"message_uuid": msg.UUID}) - - s.logger.Trace("Sending msg", logFields) - messages <- msg - - s.logger.Trace("Waiting for ACK", logFields) - select { - case <-msg.Acked(): - s.logger.Trace("Message acknowledged", logFields.Add(watermill.LogFields{"err": err})) - w.WriteHeader(http.StatusOK) - case <-msg.Nacked(): - s.logger.Trace("Message nacked", logFields.Add(watermill.LogFields{"err": err})) - w.WriteHeader(http.StatusInternalServerError) - case <-r.Context().Done(): - s.logger.Info("Request stopped without ACK received", logFields) - w.WriteHeader(http.StatusInternalServerError) - } - }) - - return messages, nil -} - -// StartHTTPServer starts http server. -// It must be called after all Subscribe calls have completed. -// Just like http.Server.Serve(), it returns http.ErrServerClosed after the server's been closed. -// https://golang.org/pkg/net/http/#Server.Serve -func (s *Subscriber) StartHTTPServer() error { - listener, err := net.Listen("tcp", s.server.Addr) - if err != nil { - return err - } - s.addrLock.Lock() - s.address = listener.Addr() - s.addrLock.Unlock() - - return s.server.Serve(listener) -} - -// Addr returns the server address or nil if the server isn't running. -func (s *Subscriber) Addr() net.Addr { - s.addrLock.RLock() - defer s.addrLock.RUnlock() - - return s.address -} - -func (s *Subscriber) Close() error { - if s.closed { - return nil - } - s.closed = true - - if err := s.server.Close(); err != nil { - return err - } - - for _, ch := range s.outputChannels { - close(ch) - } - - return nil -} diff --git a/message/infrastructure/io/doc.go b/message/infrastructure/io/doc.go deleted file mode 100644 index f79cacc94..000000000 --- a/message/infrastructure/io/doc.go +++ /dev/null @@ -1,5 +0,0 @@ -package io - -// io transforms the standard library interfaces io.Writer and io.Reader into Publisher and Subscriber, respectively. -// -// For more details, see https://watermill.io/docs/pub-sub-implementations/#io-writer-io-reader diff --git a/message/infrastructure/io/marshal.go b/message/infrastructure/io/marshal.go deleted file mode 100644 index c5ead2da4..000000000 --- a/message/infrastructure/io/marshal.go +++ /dev/null @@ -1,98 +0,0 @@ -package io - -import ( - "bytes" - "encoding/gob" - "fmt" - "time" - - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - - "github.com/ThreeDotsLabs/watermill/message" -) - -// MarshalMessageFunc packages the message into a byte slice. -// The topic argument is there because some writers (i.e. loggers) might want to present the topic as part of their output. -type MarshalMessageFunc func(topic string, msg *message.Message) ([]byte, error) - -// PayloadMarshalFunc dumps the message's payload, discarding the remaining fields of the message. -// The output is always terminated with EOL byte. -// -// This basic unmarshaler function may be used e.g. to write just the message payloads to stdout or to a file, -// without cluttering the output with metadata and UUIDs. -func PayloadMarshalFunc(topic string, msg *message.Message) ([]byte, error) { - return append(msg.Payload, '\n'), nil -} - -// TimestampTopicPayloadMarshalFunc dumps the message's payload. -// Each message is prepended by the current timestamp and the topic. -// The output is always terminated with EOL byte. -// -// This basic unmarshaler function may be used e.g. to write just the message payloads to stdout or to a file, -// without cluttering the output with metadata and UUIDs. -func TimestampTopicPayloadMarshalFunc(topic string, msg *message.Message) ([]byte, error) { - buf := &bytes.Buffer{} - - _, err := fmt.Fprintf( - buf, - "[%s] %s: %s\n", - time.Now().Format("2006-01-02 15:04:05.999999999"), - topic, - string(msg.Payload), - ) - if err != nil { - return nil, err - } - - return buf.Bytes(), nil -} - -// UnmarshalMessageFunc restores the message from a byte slice. -// The topic argument is there to keep symmetry with MarshalMessageFunc, as some unmarshalers might restore the topic as well. -type UnmarshalMessageFunc func(topic string, b []byte) (*message.Message, error) - -// PayloadUnmarshalFunc puts the whole byte slice into the message's Payload. -// The UUID is generated from the byte slice by the SHA1 hash function. -func PayloadUnmarshalFunc(topic string, b []byte) (*message.Message, error) { - uuid := watermill.NewUUID() - return message.NewMessage(uuid, b), nil -} - -// LosslessMarshaler marshals/unmarshals messages using gob. -// As opposed to other (un)marshalers in this package, all the attributes of the message (UUID, metadata, ...) are preserved. -// However, the result is not easily readable by humans or other marshalers. -type LosslessMarshaler struct{} - -func (m LosslessMarshaler) Unmarshal(topic string, b []byte) (*message.Message, error) { - buf := new(bytes.Buffer) - decoder := gob.NewDecoder(buf) - - _, err := buf.Write(b) - if err != nil { - return nil, errors.Wrap(err, "could not write on gob buffer") - } - - var msg = new(message.Message) - err = decoder.Decode(msg) - if err != nil { - return nil, errors.Wrap(err, "could not decode message with gob") - } - - return msg, nil -} - -func (m LosslessMarshaler) Marshal(topic string, msg *message.Message) ([]byte, error) { - buf := new(bytes.Buffer) - encoder := gob.NewEncoder(buf) - - err := encoder.Encode(msg) - - if err != nil { - return nil, errors.Wrap(err, "could not encode message with gob") - } - - b := buf.Bytes() - return b, nil -} diff --git a/message/infrastructure/io/marshal_test.go b/message/infrastructure/io/marshal_test.go deleted file mode 100644 index eb7e1e6af..000000000 --- a/message/infrastructure/io/marshal_test.go +++ /dev/null @@ -1,52 +0,0 @@ -package io_test - -import ( - "strconv" - "sync" - "testing" - - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/io" -) - -func TestLosslessMarshaler(t *testing.T) { - lm := io.LosslessMarshaler{} - - richMessage := message.NewMessage(watermill.NewUUID(), []byte("No bird soars too high, if he soars with his own wings")) - richMessage.Metadata.Set("foo", "1") - richMessage.Metadata.Set("bar", "2") - - wg := sync.WaitGroup{} - wg.Add(100) - - once := sync.Once{} - atLeastOneUnequal := false - for i := 0; i < 100; i++ { - go func(i int) { - defer wg.Done() - sourceMessage := richMessage.Copy() - sourceMessage.Metadata.Set("number", strconv.Itoa(i)) - - b, err := lm.Marshal("topic", sourceMessage) - require.NoError(t, err) - - unmarshaledMsg, err := lm.Unmarshal("other_topic", b) - require.NoError(t, err, "expected to unmarshal correctly; topic should have no influence") - - if !sourceMessage.Equals(unmarshaledMsg) { - //t.Logf("msg %+v not equal to source message %+v", unmarshaledMsg, sourceMessage) - t.Logf("number metadata not equal: %s, expecting %s", unmarshaledMsg.Metadata.Get("number"), sourceMessage.Metadata.Get("number")) - once.Do(func() { - atLeastOneUnequal = true - }) - } - }(i) - } - - wg.Wait() - assert.False(t, atLeastOneUnequal, "expected all unmarshaled messages to equal the source message") -} diff --git a/message/infrastructure/io/publisher.go b/message/infrastructure/io/publisher.go deleted file mode 100644 index b442bab07..000000000 --- a/message/infrastructure/io/publisher.go +++ /dev/null @@ -1,99 +0,0 @@ -package io - -import ( - "io" - "sync" - - multierror "github.com/hashicorp/go-multierror" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -type PublisherConfig struct { - // MarshalFunc transforms the Watermill messages into raw bytes for transport. - // Its behavior may be dependent on the topic. - MarshalFunc MarshalMessageFunc -} - -func (p PublisherConfig) validate() error { - if p.MarshalFunc == nil { - return errors.New("marshal func is empty") - } - - return nil -} - -// Publisher writes the messages to the underlying io.Writer. -// Its behaviour is highly customizable through the choice of the marshal function in config. -type Publisher struct { - wc io.WriteCloser - config PublisherConfig - publishWg sync.WaitGroup - - closed bool - - logger watermill.LoggerAdapter -} - -func NewPublisher(wc io.WriteCloser, config PublisherConfig, logger watermill.LoggerAdapter) (*Publisher, error) { - if err := config.validate(); err != nil { - return nil, errors.Wrap(err, "invalid config") - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - return &Publisher{wc: wc, config: config, logger: logger}, nil -} - -// Publish writes the messages to the underlying io.Writer. -// -func (p *Publisher) Publish(topic string, messages ...*message.Message) error { - if p.closed == true { - return errors.New("publisher is closed") - } - - p.publishWg.Add(len(messages)) - - var err error - for _, msg := range messages { - if writeErr := p.write(topic, msg); writeErr != nil { - err = multierror.Append(err, writeErr) - } - } - - return err -} - -// Close closes the underlying Writer. -// Trying to publish messages with a closed publisher will throw an error. -// Close is idempotent. -func (p *Publisher) Close() error { - if p.closed { - return nil - } - - p.closed = true - err := p.wc.Close() - p.publishWg.Wait() - - return err -} - -func (p *Publisher) write(topic string, msg *message.Message) error { - defer p.publishWg.Done() - - b, err := p.config.MarshalFunc(topic, msg) - if err != nil { - return errors.Wrapf(err, "could not marshal message %s", msg.UUID) - } - - if _, err = p.wc.Write(b); err != nil { - return errors.Wrap(err, "could not write message to output") - } - - return nil -} diff --git a/message/infrastructure/io/publisher_test.go b/message/infrastructure/io/publisher_test.go deleted file mode 100644 index 60f2e7064..000000000 --- a/message/infrastructure/io/publisher_test.go +++ /dev/null @@ -1,82 +0,0 @@ -package io_test - -import ( - "github.com/ThreeDotsLabs/watermill" - "testing" - - "github.com/pkg/errors" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/io" -) - -var errWritingOnClosedWriter = errors.New("mockWriter is closed") - -type mockWriter struct { - messages [][]byte - closed bool -} - -func (m *mockWriter) Write(p []byte) (n int, err error) { - if m.closed { - return 0, errWritingOnClosedWriter - } - - m.messages = append(m.messages, p) - return len(p), nil -} - -func (m *mockWriter) Close() error { - m.closed = true - return nil -} - -func TestPublisher_Publish(t *testing.T) { - mw := &mockWriter{ - messages: [][]byte{}, - } - pub, err := io.NewPublisher( - mw, - io.PublisherConfig{ - MarshalFunc: io.PayloadMarshalFunc, - }, - watermill.NopLogger{}, - ) - require.NoError(t, err) - - msg1 := message.NewMessage("1", []byte("foo")) - msg2 := message.NewMessage("2", []byte("bar")) - msg3 := message.NewMessage("3", []byte("baz")) - msg4 := message.NewMessage("4", []byte("bax")) - - err = pub.Publish( - "topic", - msg1, - msg2, - ) - require.NoError(t, err) - - err = pub.Publish( - "another_topic", - msg3, - ) - require.NoError(t, err) - - err = pub.Close() - require.NoError(t, err) - - err = pub.Publish( - "another_topic", - msg4, - ) - require.Error(t, err, "should not successfully publish on closed publisher") - assert.NotEqual(t, errWritingOnClosedWriter, errors.Cause(err), "should not have called Write, but refused instead") - - require.Len(t, mw.messages, 3, "expected to record 3 messages") - - assert.Equal(t, append([]byte(msg1.Payload), '\n'), mw.messages[0]) - assert.Equal(t, append([]byte(msg2.Payload), '\n'), mw.messages[1]) - assert.Equal(t, append([]byte(msg3.Payload), '\n'), mw.messages[2]) -} diff --git a/message/infrastructure/io/subscriber.go b/message/infrastructure/io/subscriber.go deleted file mode 100644 index 3b0e85688..000000000 --- a/message/infrastructure/io/subscriber.go +++ /dev/null @@ -1,232 +0,0 @@ -package io - -import ( - "bufio" - "context" - "io" - "sync" - "time" - - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -type SubscriberConfig struct { - // BufferSize configures how many bytes will be read at a time from the Subscriber's Reader. - // Each message will be treated as having at most BufferSize bytes. - // If 0, Subscriber works in delimiter mode - it scans for messages delimited by the MessageDelimiter byte. - BufferSize int - // MessageDelimiter is the byte that is expected to separate messages if BufferSize is equal to 0. - MessageDelimiter byte - - // PollInterval is the time between polling for new messages if the last read was empty. Defaults to time.Second. - PollInterval time.Duration - - // UnmarshalFunc transforms the raw bytes into a Watermill message. Its behavior may be dependent on the topic. - UnmarshalFunc UnmarshalMessageFunc -} - -func (c SubscriberConfig) validate() error { - if c.BufferSize != 0 && c.MessageDelimiter != 0 { - return errors.New("choose either BufferSize or MessageDelimiter") - } - - if c.BufferSize < 0 { - return errors.New("buffer size must be non-negative") - } - - if c.UnmarshalFunc == nil { - return errors.New("unmarshal func is empty") - } - - return nil -} - -func (c *SubscriberConfig) setDefaults() { - if c.BufferSize == 0 && c.MessageDelimiter == 0 { - c.MessageDelimiter = '\n' - } - - if c.PollInterval == 0 { - c.PollInterval = time.Second - } -} - -// Subscriber reads bytes from its underlying io.Reader and interprets them as Watermill messages. -// It posts the messages on the output stream from Subscribe(). -// There are several ways in which Subscriber may interpret messages from the Reader, configurable by the -// unmarshal function in the config. -type Subscriber struct { - rc io.ReadCloser - subscribeWg sync.WaitGroup - config SubscriberConfig - - closed bool - closing chan struct{} - - logger watermill.LoggerAdapter -} - -func NewSubscriber(rc io.ReadCloser, config SubscriberConfig, logger watermill.LoggerAdapter) (*Subscriber, error) { - if err := config.validate(); err != nil { - return nil, errors.Wrap(err, "invalid subscriber config") - } - config.setDefaults() - - if logger == nil { - logger = watermill.NopLogger{} - } - - return &Subscriber{ - rc: rc, - config: config, - closing: make(chan struct{}), - logger: logger, - }, nil -} - -func (s *Subscriber) Subscribe(ctx context.Context, topic string) (<-chan *message.Message, error) { - if s.closed { - return nil, errors.New("subscriber is closed") - } - - out := make(chan *message.Message) - s.subscribeWg.Add(1) - go s.consume(ctx, topic, out) - - return out, nil -} - -func (s *Subscriber) Close() error { - if s.closed { - return nil - } - - s.closed = true - close(s.closing) - - err := s.rc.Close() - - s.subscribeWg.Wait() - return err -} - -func (s *Subscriber) consume(ctx context.Context, topic string, output chan *message.Message) { - defer s.subscribeWg.Done() - defer close(output) - - var reader *bufio.Reader - if s.config.BufferSize > 0 { - reader = bufio.NewReaderSize(s.rc, s.config.BufferSize) - } else { - reader = bufio.NewReader(s.rc) - } - - var chunk []byte - var alive bool - readCh := s.read(reader) - for { - select { - case chunk, alive = <-readCh: - if !alive { - s.logger.Debug("Read channel closed, breaking read loop", nil) - return - } - case <-s.closing: - s.logger.Debug("Subscriber closing, breaking read loop", nil) - return - } - - if s.config.BufferSize == 0 && chunk[len(chunk)-1] == s.config.MessageDelimiter { - // trim the delimiter byte - chunk = chunk[:len(chunk)-1] - } - - msg, err := s.config.UnmarshalFunc(topic, chunk) - if err != nil { - s.logger.Error("Could not unmarshal message", err, nil) - continue - } - logger := s.logger.With(watermill.LogFields{ - "uuid": msg.UUID, - "topic": topic, - }) - - ResendLoop: - for { - select { - case output <- msg: - logger.Trace("Message consumed", nil) - case <-ctx.Done(): - logger.Info("Context closed, discarding message", nil) - return - case <-s.closing: - logger.Info("Subscriber closed, discarding message", nil) - return - } - - select { - case <-msg.Acked(): - logger.Trace("Message acked", nil) - break ResendLoop - case <-msg.Nacked(): - logger.Trace("Message nacked, resending", nil) - msg = msg.Copy() - continue ResendLoop - case <-ctx.Done(): - logger.Info("Context closed without ack", nil) - return - case <-s.closing: - logger.Info("Subscriber closed without ack", nil) - return - } - } - } -} - -func (s *Subscriber) read(reader *bufio.Reader) chan []byte { - chunkCh := make(chan []byte) - - go func() { - // todo: no way to stop this goroutine if it blocks on Read/ReadSlice - defer func() { - close(chunkCh) - }() - for { - var bytesRead int - var err error - - var chunk []byte - if s.config.BufferSize > 0 { - chunk = make([]byte, s.config.BufferSize) - } - - if s.config.BufferSize > 0 { - bytesRead, err = reader.Read(chunk) - } else { - chunk, err = reader.ReadSlice(s.config.MessageDelimiter) - bytesRead = len(chunk) - } - - if err != nil && errors.Cause(err) != io.EOF { - s.logger.Error("Could not read from buffer, closing read()", err, nil) - return - } - - if s.closed { - return - } - - if bytesRead == 0 { - time.Sleep(s.config.PollInterval) - continue - } - - chunkCh <- chunk - } - }() - - return chunkCh -} diff --git a/message/infrastructure/kafka/config.go b/message/infrastructure/kafka/config.go deleted file mode 100644 index cd4b717a2..000000000 --- a/message/infrastructure/kafka/config.go +++ /dev/null @@ -1,22 +0,0 @@ -package kafka - -import "github.com/Shopify/sarama" - -// DefaultSaramaSubscriberConfig creates default Sarama config used by Watermill. -// -// Custom config can be passed to NewSubscriber and NewPublisher. -// -// saramaConfig := DefaultSaramaSubscriberConfig() -// saramaConfig.Consumer.Offsets.Initial = sarama.OffsetOldest -// -// subscriber, err := NewSubscriber(watermillConfig, saramaConfig, unmarshaler, logger) -// // ... -// -func DefaultSaramaSubscriberConfig() *sarama.Config { - config := sarama.NewConfig() - config.Version = sarama.V1_0_0_0 - config.Consumer.Return.Errors = true - config.ClientID = "watermill" - - return config -} diff --git a/message/infrastructure/kafka/marshaler.go b/message/infrastructure/kafka/marshaler.go deleted file mode 100644 index e58ec43db..000000000 --- a/message/infrastructure/kafka/marshaler.go +++ /dev/null @@ -1,94 +0,0 @@ -package kafka - -import ( - "github.com/Shopify/sarama" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/pkg/errors" -) - -const UUIDHeaderKey = "_watermill_message_uuid" - -// Marshaler marshals Watermill's message to Kafka message. -type Marshaler interface { - Marshal(topic string, msg *message.Message) (*sarama.ProducerMessage, error) -} - -// Unmarshaler unmarshals Kafka's message to Watermill's message. -type Unmarshaler interface { - Unmarshal(*sarama.ConsumerMessage) (*message.Message, error) -} - -type MarshalerUnmarshaler interface { - Marshaler - Unmarshaler -} - -type DefaultMarshaler struct{} - -func (DefaultMarshaler) Marshal(topic string, msg *message.Message) (*sarama.ProducerMessage, error) { - if value := msg.Metadata.Get(UUIDHeaderKey); value != "" { - return nil, errors.Errorf("metadata %s is reserved by watermill for message UUID", UUIDHeaderKey) - } - - headers := []sarama.RecordHeader{{ - Key: []byte(UUIDHeaderKey), - Value: []byte(msg.UUID), - }} - for key, value := range msg.Metadata { - headers = append(headers, sarama.RecordHeader{ - Key: []byte(key), - Value: []byte(value), - }) - } - - return &sarama.ProducerMessage{ - Topic: topic, - Value: sarama.ByteEncoder(msg.Payload), - Headers: headers, - }, nil -} - -func (DefaultMarshaler) Unmarshal(kafkaMsg *sarama.ConsumerMessage) (*message.Message, error) { - var messageID string - metadata := make(message.Metadata, len(kafkaMsg.Headers)) - - for _, header := range kafkaMsg.Headers { - if string(header.Key) == UUIDHeaderKey { - messageID = string(header.Value) - } else { - metadata.Set(string(header.Key), string(header.Value)) - } - } - - msg := message.NewMessage(messageID, kafkaMsg.Value) - msg.Metadata = metadata - - return msg, nil -} - -type GeneratePartitionKey func(topic string, msg *message.Message) (string, error) - -type kafkaJsonWithPartitioning struct { - DefaultMarshaler - - generatePartitionKey GeneratePartitionKey -} - -func NewWithPartitioningMarshaler(generatePartitionKey GeneratePartitionKey) MarshalerUnmarshaler { - return kafkaJsonWithPartitioning{generatePartitionKey: generatePartitionKey} -} - -func (j kafkaJsonWithPartitioning) Marshal(topic string, msg *message.Message) (*sarama.ProducerMessage, error) { - kafkaMsg, err := j.DefaultMarshaler.Marshal(topic, msg) - if err != nil { - return nil, err - } - - key, err := j.generatePartitionKey(topic, msg) - if err != nil { - return nil, errors.Wrap(err, "cannot generate partition key") - } - kafkaMsg.Key = sarama.ByteEncoder(key) - - return kafkaMsg, nil -} diff --git a/message/infrastructure/kafka/marshaler_test.go b/message/infrastructure/kafka/marshaler_test.go deleted file mode 100644 index 81e00ce7a..000000000 --- a/message/infrastructure/kafka/marshaler_test.go +++ /dev/null @@ -1,118 +0,0 @@ -package kafka_test - -import ( - "testing" - - "github.com/Shopify/sarama" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" -) - -func TestDefaultMarshaler_MarshalUnmarshal(t *testing.T) { - m := kafka.DefaultMarshaler{} - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - marshaled, err := m.Marshal("topic", msg) - require.NoError(t, err) - - unmarshaledMsg, err := m.Unmarshal(producerToConsumerMessage(marshaled)) - require.NoError(t, err) - - assert.True(t, msg.Equals(unmarshaledMsg)) -} - -func BenchmarkDefaultMarshaler_Marshal(b *testing.B) { - m := kafka.DefaultMarshaler{} - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - for i := 0; i < b.N; i++ { - m.Marshal("foo", msg) - } -} - -func BenchmarkDefaultMarshaler_Unmarshal(b *testing.B) { - m := kafka.DefaultMarshaler{} - - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("foo", "bar") - - marshaled, err := m.Marshal("foo", msg) - if err != nil { - b.Fatal(err) - } - - consumedMsg := producerToConsumerMessage(marshaled) - - for i := 0; i < b.N; i++ { - m.Unmarshal(consumedMsg) - } -} - -func TestWithPartitioningMarshaler_MarshalUnmarshal(t *testing.T) { - m := kafka.NewWithPartitioningMarshaler(func(topic string, msg *message.Message) (string, error) { - return msg.Metadata.Get("partition"), nil - }) - - partitionKey := "1" - msg := message.NewMessage(watermill.NewUUID(), []byte("payload")) - msg.Metadata.Set("partition", partitionKey) - - producerMsg, err := m.Marshal("topic", msg) - require.NoError(t, err) - - unmarshaledMsg, err := m.Unmarshal(producerToConsumerMessage(producerMsg)) - require.NoError(t, err) - - assert.True(t, msg.Equals(unmarshaledMsg)) - - assert.NoError(t, err) - - producerKey, err := producerMsg.Key.Encode() - require.NoError(t, err) - - assert.Equal(t, string(producerKey), partitionKey) -} - -func producerToConsumerMessage(producerMessage *sarama.ProducerMessage) *sarama.ConsumerMessage { - var key []byte - - if producerMessage.Key != nil { - var err error - key, err = producerMessage.Key.Encode() - if err != nil { - panic(err) - } - } - - var value []byte - if producerMessage.Value != nil { - var err error - value, err = producerMessage.Value.Encode() - if err != nil { - panic(err) - } - } - - var headers []*sarama.RecordHeader - for i := range producerMessage.Headers { - headers = append(headers, &producerMessage.Headers[i]) - } - - return &sarama.ConsumerMessage{ - Key: key, - Value: value, - Topic: producerMessage.Topic, - Partition: producerMessage.Partition, - Offset: producerMessage.Offset, - Timestamp: producerMessage.Timestamp, - Headers: headers, - } -} diff --git a/message/infrastructure/kafka/publisher.go b/message/infrastructure/kafka/publisher.go deleted file mode 100644 index 64c8effa5..000000000 --- a/message/infrastructure/kafka/publisher.go +++ /dev/null @@ -1,103 +0,0 @@ -package kafka - -import ( - "time" - - "github.com/Shopify/sarama" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -type Publisher struct { - producer sarama.SyncProducer - marshaler Marshaler - - logger watermill.LoggerAdapter - - closed bool -} - -// NewPublisher creates a new Kafka Publisher. -func NewPublisher( - brokers []string, - marshaler Marshaler, - overwriteSaramaConfig *sarama.Config, - logger watermill.LoggerAdapter, -) (message.Publisher, error) { - if overwriteSaramaConfig == nil { - overwriteSaramaConfig = DefaultSaramaSyncPublisherConfig() - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - producer, err := sarama.NewSyncProducer(brokers, overwriteSaramaConfig) - if err != nil { - return nil, errors.Wrap(err, "cannot create Kafka producer") - } - - return &Publisher{producer, marshaler, logger, false}, nil -} - -func DefaultSaramaSyncPublisherConfig() *sarama.Config { - config := sarama.NewConfig() - - config.Producer.Retry.Max = 10 - config.Producer.Return.Successes = true - config.Version = sarama.V1_0_0_0 - config.Metadata.Retry.Backoff = time.Second * 2 - config.ClientID = "watermill" - - return config -} - -// Publish publishes message to Kafka. -// -// Publish is blocking and wait for ack from Kafka. -// When one of messages delivery fails - function is interrupted. -func (p *Publisher) Publish(topic string, msgs ...*message.Message) error { - if p.closed { - return errors.New("publisher closed") - } - - logFields := make(watermill.LogFields, 4) - logFields["topic"] = topic - - for _, msg := range msgs { - logFields["message_uuid"] = msg.UUID - p.logger.Trace("Sending message to Kafka", logFields) - - kafkaMsg, err := p.marshaler.Marshal(topic, msg) - if err != nil { - return errors.Wrapf(err, "cannot marshal message %s", msg.UUID) - } - - partition, offset, err := p.producer.SendMessage(kafkaMsg) - if err != nil { - return errors.Wrapf(err, "cannot produce message %s", msg.UUID) - } - - logFields["kafka_partition"] = partition - logFields["kafka_partition_offset"] = offset - - p.logger.Trace("Message sent to Kafka", logFields) - } - - return nil -} - -func (p *Publisher) Close() error { - if p.closed { - return nil - } - p.closed = true - - if err := p.producer.Close(); err != nil { - return errors.Wrap(err, "cannot close Kafka producer") - } - - return nil -} diff --git a/message/infrastructure/kafka/pubsub_bench_test.go b/message/infrastructure/kafka/pubsub_bench_test.go deleted file mode 100644 index ed2894ee3..000000000 --- a/message/infrastructure/kafka/pubsub_bench_test.go +++ /dev/null @@ -1,41 +0,0 @@ -package kafka_test - -import ( - "testing" - - "github.com/Shopify/sarama" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" -) - -func BenchmarkSubscriber(b *testing.B) { - infrastructure.BenchSubscriber(b, func(n int) (message.Publisher, message.Subscriber) { - logger := watermill.NopLogger{} - - publisher, err := kafka.NewPublisher(kafkaBrokers(), kafka.DefaultMarshaler{}, nil, logger) - if err != nil { - panic(err) - } - - saramaConfig := kafka.DefaultSaramaSubscriberConfig() - saramaConfig.Consumer.Offsets.Initial = sarama.OffsetOldest - - subscriber, err := kafka.NewSubscriber( - kafka.SubscriberConfig{ - Brokers: kafkaBrokers(), - ConsumerGroup: "test", - }, - saramaConfig, - kafka.DefaultMarshaler{}, - logger, - ) - if err != nil { - panic(err) - } - - return publisher, subscriber - }) -} diff --git a/message/infrastructure/kafka/pubsub_stress_test.go b/message/infrastructure/kafka/pubsub_stress_test.go deleted file mode 100644 index a0d3adf44..000000000 --- a/message/infrastructure/kafka/pubsub_stress_test.go +++ /dev/null @@ -1,37 +0,0 @@ -// +build stress - -package kafka_test - -import ( - "testing" - - "github.com/ThreeDotsLabs/watermill/message/infrastructure" -) - -func TestPublishSubscribe_stress(t *testing.T) { - infrastructure.TestPubSubStressTest( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - }, - createPubSub, - createPubSubWithConsumerGrup, - ) -} - -func TestPublishSubscribe_ordered_stress(t *testing.T) { - infrastructure.TestPubSubStressTest( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: true, - Persistent: true, - }, - createPartitionedPubSub, - createPubSubWithConsumerGrup, - ) -} diff --git a/message/infrastructure/kafka/pubsub_test.go b/message/infrastructure/kafka/pubsub_test.go deleted file mode 100644 index 82929c921..000000000 --- a/message/infrastructure/kafka/pubsub_test.go +++ /dev/null @@ -1,145 +0,0 @@ -package kafka_test - -import ( - "os" - "strings" - "testing" - "time" - - "github.com/Shopify/sarama" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" - "github.com/stretchr/testify/require" -) - -func kafkaBrokers() []string { - brokers := os.Getenv("WATERMILL_TEST_KAFKA_BROKERS") - if brokers != "" { - return strings.Split(brokers, ",") - } - return []string{"localhost:9092"} -} - -func newPubSub(t *testing.T, marshaler kafka.MarshalerUnmarshaler, consumerGroup string) (message.Publisher, message.Subscriber) { - logger := watermill.NewStdLogger(true, true) - - publisher, err := kafka.NewPublisher(kafkaBrokers(), marshaler, nil, logger) - require.NoError(t, err) - - saramaConfig := kafka.DefaultSaramaSubscriberConfig() - saramaConfig.Consumer.Offsets.Initial = sarama.OffsetOldest - - saramaConfig.Admin.Timeout = time.Second * 30 - saramaConfig.Producer.RequiredAcks = sarama.WaitForAll - saramaConfig.ChannelBufferSize = 10240 - saramaConfig.Consumer.Group.Heartbeat.Interval = time.Millisecond * 500 - saramaConfig.Consumer.Group.Rebalance.Timeout = time.Millisecond * 500 - - subscriber, err := kafka.NewSubscriber( - kafka.SubscriberConfig{ - Brokers: kafkaBrokers(), - ConsumerGroup: consumerGroup, - InitializeTopicDetails: &sarama.TopicDetail{ - NumPartitions: 8, - ReplicationFactor: 1, - }, - }, - saramaConfig, - marshaler, - logger, - ) - require.NoError(t, err) - - return publisher, subscriber -} - -func generatePartitionKey(topic string, msg *message.Message) (string, error) { - return msg.Metadata.Get("partition_key"), nil -} - -func createPubSubWithConsumerGrup(t *testing.T, consumerGroup string) (message.Publisher, message.Subscriber) { - return newPubSub(t, kafka.DefaultMarshaler{}, consumerGroup) -} - -func createPubSub(t *testing.T) (message.Publisher, message.Subscriber) { - return createPubSubWithConsumerGrup(t, "test") -} - -func createPartitionedPubSub(t *testing.T) (message.Publisher, message.Subscriber) { - return newPubSub(t, kafka.NewWithPartitioningMarshaler(generatePartitionKey), "test") -} - -func createNoGroupSubscriberConstructor(t *testing.T) message.Subscriber { - logger := watermill.NewStdLogger(true, true) - - marshaler := kafka.DefaultMarshaler{} - - saramaConfig := kafka.DefaultSaramaSubscriberConfig() - saramaConfig.Consumer.Offsets.Initial = sarama.OffsetOldest - - sub, err := kafka.NewSubscriber( - kafka.SubscriberConfig{ - Brokers: kafkaBrokers(), - ConsumerGroup: "", - }, - saramaConfig, - marshaler, - logger, - ) - require.NoError(t, err) - - return sub -} - -func TestPublishSubscribe(t *testing.T) { - features := infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - } - - if infrastructure.RunOnlyFastTests() { - // Kafka tests are a bit slow, so let's run only basic test - // todo - speed up - t.Log("Running only TestPublishSubscribe for Kafka with -short flag") - infrastructure.TestPublishSubscribe(t, createPubSub, features) - return - } - - infrastructure.TestPubSub( - t, - features, - createPubSub, - createPubSubWithConsumerGrup, - ) -} - -func TestPublishSubscribe_ordered(t *testing.T) { - if testing.Short() { - t.Skip("skipping long tests") - } - - infrastructure.TestPubSub( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: true, - Persistent: true, - }, - createPartitionedPubSub, - createPubSubWithConsumerGrup, - ) -} - -func TestNoGroupSubscriber(t *testing.T) { - if testing.Short() { - t.Skip("skipping long tests") - } - - infrastructure.TestNoGroupSubscriber(t, createPubSub, createNoGroupSubscriberConstructor) -} diff --git a/message/infrastructure/kafka/subscriber.go b/message/infrastructure/kafka/subscriber.go deleted file mode 100644 index fa71e8887..000000000 --- a/message/infrastructure/kafka/subscriber.go +++ /dev/null @@ -1,498 +0,0 @@ -package kafka - -import ( - "context" - "sync" - "time" - - "github.com/Shopify/sarama" - "github.com/hashicorp/go-multierror" - "github.com/pkg/errors" - "github.com/renstrom/shortuuid" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -type Subscriber struct { - config SubscriberConfig - saramaConfig *sarama.Config - - unmarshaler Unmarshaler - logger watermill.LoggerAdapter - - closing chan struct{} - subscribersWg sync.WaitGroup - - closed bool -} - -// NewSubscriber creates a new Kafka Subscriber. -func NewSubscriber( - config SubscriberConfig, - overwriteSaramaConfig *sarama.Config, - unmarshaler Unmarshaler, - logger watermill.LoggerAdapter, -) (message.Subscriber, error) { - config.setDefaults() - - if err := config.Validate(); err != nil { - return nil, err - } - - if overwriteSaramaConfig == nil { - overwriteSaramaConfig = DefaultSaramaSubscriberConfig() - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - logger = logger.With(watermill.LogFields{ - "subscriber_uuid": shortuuid.New(), - }) - - return &Subscriber{ - config: config, - saramaConfig: overwriteSaramaConfig, - - unmarshaler: unmarshaler, - logger: logger, - - closing: make(chan struct{}), - }, nil -} - -type SubscriberConfig struct { - // Kafka brokers list. - Brokers []string - - // Kafka consumer group. - // When empty, all messages from all partitions will be returned. - ConsumerGroup string - - // How long after Nack message should be redelivered. - NackResendSleep time.Duration - - // How long about unsuccessful reconnecting next reconnect will occur. - ReconnectRetrySleep time.Duration - - InitializeTopicDetails *sarama.TopicDetail -} - -// NoSleep can be set to SubscriberConfig.NackResendSleep and SubscriberConfig.ReconnectRetrySleep. -const NoSleep time.Duration = -1 - -func (c *SubscriberConfig) setDefaults() { - if c.NackResendSleep == 0 { - c.NackResendSleep = time.Millisecond * 100 - } - if c.ReconnectRetrySleep == 0 { - c.ReconnectRetrySleep = time.Second - } -} - -func (c SubscriberConfig) Validate() error { - if len(c.Brokers) == 0 { - return errors.New("missing brokers") - } - - return nil -} - -// Subscribe subscribers for messages in Kafka. -// -// There are multiple subscribers spawned -func (s *Subscriber) Subscribe(ctx context.Context, topic string) (<-chan *message.Message, error) { - if s.closed { - return nil, errors.New("subscriber closed") - } - - s.subscribersWg.Add(1) - - logFields := watermill.LogFields{ - "provider": "kafka", - "topic": topic, - "consumer_group": s.config.ConsumerGroup, - "kafka_consumer_uuid": shortuuid.New(), - } - s.logger.Info("Subscribing to Kafka topic", logFields) - - // we don't want to have buffered channel to not consume message from Kafka when consumer is not consuming - output := make(chan *message.Message, 0) - - consumeClosed, err := s.consumeMessages(ctx, topic, output, logFields) - if err != nil { - s.subscribersWg.Done() - return nil, err - } - - go func() { - // blocking, until s.closing is closed - s.handleReconnects(ctx, topic, output, consumeClosed, logFields) - close(output) - s.subscribersWg.Done() - }() - - return output, nil -} - -func (s *Subscriber) handleReconnects( - ctx context.Context, - topic string, - output chan *message.Message, - consumeClosed chan struct{}, - logFields watermill.LogFields, -) { - for { - // nil channel will cause deadlock - if consumeClosed != nil { - <-consumeClosed - } - - s.logger.Info("consumeMessages stopped", logFields) - - select { - // it's important to don't exit before consumeClosed, - // to not trigger s.subscribersWg.Done() before consumer is closed - case <-s.closing: - s.logger.Debug("Closing subscriber, no reconnect needed", logFields) - return - case <-ctx.Done(): - s.logger.Debug("Ctx cancelled, no reconnect needed", logFields) - return - default: - // not closing - } - - s.logger.Info("Reconnecting consumer", logFields) - - var err error - consumeClosed, err = s.consumeMessages(ctx, topic, output, logFields) - if err != nil { - s.logger.Error("Cannot reconnect messages consumer", err, logFields) - - if s.config.ReconnectRetrySleep != NoSleep { - time.Sleep(s.config.ReconnectRetrySleep) - } - continue - } - } -} - -func (s *Subscriber) consumeMessages( - ctx context.Context, - topic string, - output chan *message.Message, - logFields watermill.LogFields, -) (consumeMessagesClosed chan struct{}, err error) { - s.logger.Info("Starting consuming", logFields) - - // Start with a client - client, err := sarama.NewClient(s.config.Brokers, s.saramaConfig) - if err != nil { - return nil, errors.Wrap(err, "cannot create new Sarama client") - } - - if s.config.ConsumerGroup == "" { - consumeMessagesClosed, err = s.consumeWithoutConsumerGroups(ctx, client, topic, output, logFields) - } else { - consumeMessagesClosed, err = s.consumeGroupMessages(ctx, client, topic, output, logFields) - } - - go func() { - <-consumeMessagesClosed - if err := client.Close(); err != nil { - s.logger.Error("Cannot close client", err, logFields) - } - }() - - return consumeMessagesClosed, err -} - -func (s *Subscriber) consumeGroupMessages( - ctx context.Context, - client sarama.Client, - topic string, - output chan *message.Message, - logFields watermill.LogFields, -) (chan struct{}, error) { - ctx, cancel := context.WithCancel(ctx) - go func() { - <-s.closing - cancel() - }() - - // Start a new consumer group - group, err := sarama.NewConsumerGroupFromClient(s.config.ConsumerGroup, client) - if err != nil { - return nil, errors.Wrap(err, "cannot create consumer group client") - } - go func() { - for err := range group.Errors() { - if err == nil { - continue - } - - s.logger.Error("Sarama internal error", err, logFields) - } - }() - - handler := consumerGroupHandler{ - ctx: ctx, - messageHandler: s.createMessagesHandler(output), - logger: s.logger, - closing: s.closing, - messageLogFields: logFields, - } - - closed := make(chan struct{}) - go func() { - if err := group.Consume(ctx, []string{topic}, handler); err != nil && err != sarama.ErrUnknown { - s.logger.Error("Group consume error", err, logFields) - } - - s.logger.Info("Consuming done", logFields) - close(closed) - }() - - return closed, nil -} - -func (s *Subscriber) consumeWithoutConsumerGroups( - ctx context.Context, - client sarama.Client, - topic string, - output chan *message.Message, - logFields watermill.LogFields, -) (chan struct{}, error) { - consumer, err := sarama.NewConsumerFromClient(client) - if err != nil { - return nil, errors.Wrap(err, "cannot create client") - } - - partitions, err := consumer.Partitions(topic) - if err != nil { - return nil, errors.Wrap(err, "cannot get partitions") - } - - partitionConsumersWg := &sync.WaitGroup{} - - for _, partition := range partitions { - partitionConsumersWg.Add(1) - - partitionConsumer, err := consumer.ConsumePartition(topic, partition, s.saramaConfig.Consumer.Offsets.Initial) - if err != nil { - if err := client.Close(); err != nil && err != sarama.ErrClosedClient { - s.logger.Error("Cannot close client", err, logFields) - } - return nil, errors.Wrap(err, "failed to start consumer for partition") - } - - messageHandler := s.createMessagesHandler(output) - - go s.consumePartition(ctx, partitionConsumer, messageHandler, partitionConsumersWg, logFields) - } - - closed := make(chan struct{}) - go func() { - partitionConsumersWg.Wait() - close(closed) - }() - - return closed, nil -} - -func (s *Subscriber) consumePartition( - ctx context.Context, - partitionConsumer sarama.PartitionConsumer, - messageHandler messageHandler, - partitionConsumersWg *sync.WaitGroup, - logFields watermill.LogFields, -) { - defer func() { - if err := partitionConsumer.Close(); err != nil { - s.logger.Error("Cannot close partition consumer", err, logFields) - } - partitionConsumersWg.Done() - }() - - kafkaMessages := partitionConsumer.Messages() - - for { - select { - case <-s.closing: - return - case <-ctx.Done(): - return - case kafkaMsg := <-kafkaMessages: - if kafkaMsg == nil { - // kafkaMessages is closed - return - } - if err := messageHandler.processMessage(ctx, kafkaMsg, nil, logFields); err != nil { - return - } - } - } -} - -func (s *Subscriber) createMessagesHandler(output chan *message.Message) messageHandler { - return messageHandler{ - outputChannel: output, - unmarshaler: s.unmarshaler, - nackResendSleep: s.config.NackResendSleep, - logger: s.logger, - closing: s.closing, - } -} - -func (s *Subscriber) Close() error { - if s.closed { - return nil - } - - s.closed = true - close(s.closing) - s.subscribersWg.Wait() - - s.logger.Debug("Kafka subscriber closed", nil) - - return nil -} - -type consumerGroupHandler struct { - ctx context.Context - messageHandler messageHandler - logger watermill.LoggerAdapter - closing chan struct{} - messageLogFields watermill.LogFields -} - -func (consumerGroupHandler) Setup(_ sarama.ConsumerGroupSession) error { return nil } - -func (consumerGroupHandler) Cleanup(_ sarama.ConsumerGroupSession) error { return nil } - -func (h consumerGroupHandler) ConsumeClaim(sess sarama.ConsumerGroupSession, claim sarama.ConsumerGroupClaim) error { - kafkaMessages := claim.Messages() - - logFields := h.messageLogFields.Copy().Add(watermill.LogFields{ - "kafka_partition": claim.Partition(), - "kafka_initial_offset": claim.InitialOffset(), - }) - - h.logger.Debug("Consume claimed", logFields) - - for { - select { - case kafkaMsg := <-kafkaMessages: - if kafkaMsg == nil { - // kafkaMessages is closed - return nil - } - if err := h.messageHandler.processMessage(h.ctx, kafkaMsg, sess, logFields); err != nil { - // error will stop consumerGroupHandler - return err - } - - case <-h.closing: - return nil - - case <-h.ctx.Done(): - return nil - } - } -} - -type messageHandler struct { - outputChannel chan<- *message.Message - unmarshaler Unmarshaler - - nackResendSleep time.Duration - - logger watermill.LoggerAdapter - closing chan struct{} -} - -func (h messageHandler) processMessage( - ctx context.Context, - kafkaMsg *sarama.ConsumerMessage, - sess sarama.ConsumerGroupSession, - messageLogFields watermill.LogFields, -) error { - receivedMsgLogFields := messageLogFields.Add(watermill.LogFields{ - "kafka_partition_offset": kafkaMsg.Offset, - "kafka_partition": kafkaMsg.Partition, - }) - - h.logger.Trace("Received message from Kafka", receivedMsgLogFields) - - msg, err := h.unmarshaler.Unmarshal(kafkaMsg) - if err != nil { - // resend will make no sense, stopping consumerGroupHandler - return errors.Wrap(err, "message unmarshal failed") - } - - ctx, cancelCtx := context.WithCancel(ctx) - msg.SetContext(ctx) - defer cancelCtx() - - receivedMsgLogFields = receivedMsgLogFields.Add(watermill.LogFields{ - "message_uuid": msg.UUID, - }) - -ResendLoop: - for { - select { - case h.outputChannel <- msg: - h.logger.Trace("Message sent to consumer", receivedMsgLogFields) - case <-h.closing: - h.logger.Trace("Closing, message discarded", receivedMsgLogFields) - return nil - } - - select { - case <-msg.Acked(): - if sess != nil { - sess.MarkMessage(kafkaMsg, "") - } - h.logger.Trace("Message Acked", receivedMsgLogFields) - break ResendLoop - case <-msg.Nacked(): - h.logger.Trace("Message Nacked", receivedMsgLogFields) - - // reset acks, etc. - msg = msg.Copy() - if h.nackResendSleep != NoSleep { - time.Sleep(h.nackResendSleep) - } - - continue ResendLoop - case <-h.closing: - h.logger.Trace("Closing, message discarded before ack", receivedMsgLogFields) - return nil - } - } - - return nil -} - -func (s *Subscriber) SubscribeInitialize(topic string) (err error) { - clusterAdmin, err := sarama.NewClusterAdmin(s.config.Brokers, s.saramaConfig) - if err != nil { - return errors.Wrap(err, "cannot create cluster admin") - } - defer func() { - if closeErr := clusterAdmin.Close(); closeErr != nil { - err = multierror.Append(err, closeErr) - } - }() - - if err := clusterAdmin.CreateTopic(topic, s.config.InitializeTopicDetails, false); err != nil { - return errors.Wrap(err, "cannot create topic") - } - - s.logger.Info("Created Kafka topic", watermill.LogFields{"topic": topic}) - - return nil -} diff --git a/message/infrastructure/nats/connection.go b/message/infrastructure/nats/connection.go deleted file mode 100644 index 1aa80d0b9..000000000 --- a/message/infrastructure/nats/connection.go +++ /dev/null @@ -1,24 +0,0 @@ -package nats - -import stan "github.com/nats-io/stan.go" - -type StanConnConfig struct { - // ClusterID is the NATS Streaming cluster ID. - ClusterID string - - // ClientID is the NATS Streaming client ID to connect with. - // ClientID can contain only alphanumeric and `-` or `_` characters. - // - // Using DurableName causes the NATS Streaming server to track - // the last acknowledged message for that ClientID + DurableName. - ClientID string - - // StanOptions are custom []stan.Option passed to the connection. - // It is also used to provide connection parameters, for example: - // stan.NatsURL("nats://localhost:4222") - StanOptions []stan.Option -} - -func NewStanConnection(config *StanConnConfig) (stan.Conn, error) { - return stan.Connect(config.ClusterID, config.ClientID, config.StanOptions...) -} diff --git a/message/infrastructure/nats/marshaler.go b/message/infrastructure/nats/marshaler.go deleted file mode 100644 index 369bf324d..000000000 --- a/message/infrastructure/nats/marshaler.go +++ /dev/null @@ -1,62 +0,0 @@ -package nats - -import ( - "bytes" - "encoding/gob" - - stan "github.com/nats-io/stan.go" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill/message" -) - -type Marshaler interface { - Marshal(topic string, msg *message.Message) ([]byte, error) -} - -type Unmarshaler interface { - Unmarshal(*stan.Msg) (*message.Message, error) -} - -type MarshalerUnmarshaler interface { - Marshaler - Unmarshaler -} - -// GobMarshaler is marshaller which is using Gob to marshal Watermill messages. -type GobMarshaler struct{} - -func (GobMarshaler) Marshal(topic string, msg *message.Message) ([]byte, error) { - // todo - use pool - buf := new(bytes.Buffer) - - encoder := gob.NewEncoder(buf) - if err := encoder.Encode(msg); err != nil { - return nil, errors.Wrap(err, "cannot encode message") - } - - return buf.Bytes(), nil -} - -func (GobMarshaler) Unmarshal(stanMsg *stan.Msg) (*message.Message, error) { - // todo - use pool - buf := new(bytes.Buffer) - - _, err := buf.Write(stanMsg.Data) - if err != nil { - return nil, errors.Wrap(err, "cannot write stan message data to buffer") - } - - decoder := gob.NewDecoder(buf) - - var decodedMsg message.Message - if err := decoder.Decode(&decodedMsg); err != nil { - return nil, errors.Wrap(err, "cannot decode message") - } - - // creating clean message, to avoid invalid internal state with ack - msg := message.NewMessage(decodedMsg.UUID, decodedMsg.Payload) - msg.Metadata = decodedMsg.Metadata - - return msg, nil -} diff --git a/message/infrastructure/nats/marshaler_test.go b/message/infrastructure/nats/marshaler_test.go deleted file mode 100644 index 1244c3ba9..000000000 --- a/message/infrastructure/nats/marshaler_test.go +++ /dev/null @@ -1,67 +0,0 @@ -package nats_test - -import ( - "fmt" - "sync" - "testing" - - stan "github.com/nats-io/stan.go" - - "github.com/stretchr/testify/assert" - - "github.com/ThreeDotsLabs/watermill/message/infrastructure/nats" - "github.com/nats-io/stan.go/pb" - "github.com/stretchr/testify/require" - - "github.com/ThreeDotsLabs/watermill/message" -) - -func TestGobMarshaler(t *testing.T) { - msg := message.NewMessage("1", []byte("zag")) - msg.Metadata.Set("foo", "bar") - - marshaler := nats.GobMarshaler{} - - b, err := marshaler.Marshal("topic", msg) - require.NoError(t, err) - - unmarshaledMsg, err := marshaler.Unmarshal(&stan.Msg{MsgProto: pb.MsgProto{Data: b}}) - require.NoError(t, err) - - assert.True(t, msg.Equals(unmarshaledMsg)) - - unmarshaledMsg.Ack() - - select { - case <-unmarshaledMsg.Acked(): - // ok - default: - t.Fatal("ack is not working") - } -} - -func TestGobMarshaler_multiple_messages_async(t *testing.T) { - marshaler := nats.GobMarshaler{} - - messagesCount := 1000 - wg := sync.WaitGroup{} - wg.Add(messagesCount) - - for i := 0; i < messagesCount; i++ { - go func(msgNum int) { - defer wg.Done() - - msg := message.NewMessage(fmt.Sprintf("%d", msgNum), nil) - - b, err := marshaler.Marshal("topic", msg) - require.NoError(t, err) - - unmarshaledMsg, err := marshaler.Unmarshal(&stan.Msg{MsgProto: pb.MsgProto{Data: b}}) - require.NoError(t, err) - - assert.True(t, msg.Equals(unmarshaledMsg)) - }(i) - } - - wg.Wait() -} diff --git a/message/infrastructure/nats/publisher.go b/message/infrastructure/nats/publisher.go deleted file mode 100644 index 609d7d571..000000000 --- a/message/infrastructure/nats/publisher.go +++ /dev/null @@ -1,119 +0,0 @@ -package nats - -import ( - stan "github.com/nats-io/stan.go" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -type StreamingPublisherConfig struct { - // ClusterID is the NATS Streaming cluster ID. - ClusterID string - - // ClientID is the NATS Streaming client ID to connect with. - // ClientID can contain only alphanumeric and `-` or `_` characters. - ClientID string - - // StanOptions are custom options for a connection. - StanOptions []stan.Option - - // Marshaler is marshaler used to marshal messages to stan format. - Marshaler Marshaler -} - -type StreamingPublisherPublishConfig struct { - // Marshaler is marshaler used to marshal messages to stan format. - Marshaler Marshaler -} - -func (c StreamingPublisherConfig) Validate() error { - if c.Marshaler == nil { - return errors.New("StreamingPublisherConfig.Marshaler is missing") - } - - return nil -} - -func (c StreamingPublisherConfig) GetStreamingPublisherPublishConfig() StreamingPublisherPublishConfig { - return StreamingPublisherPublishConfig{ - Marshaler: c.Marshaler, - } -} - -type StreamingPublisher struct { - conn stan.Conn - config StreamingPublisherPublishConfig - logger watermill.LoggerAdapter -} - -// NewStreamingPublisher creates a new StreamingPublisher. -// -// When using custom NATS hostname, you should pass it by options StreamingPublisherConfig.StanOptions: -// // ... -// StanOptions: []stan.Option{ -// stan.NatsURL("nats://your-nats-hostname:4222"), -// } -// // ... -func NewStreamingPublisher(config StreamingPublisherConfig, logger watermill.LoggerAdapter) (*StreamingPublisher, error) { - if err := config.Validate(); err != nil { - return nil, err - } - - conn, err := stan.Connect(config.ClusterID, config.ClientID, config.StanOptions...) - if err != nil { - return nil, errors.Wrap(err, "cannot connect to nats") - } - - return NewStreamingPublisherWithStanConn(conn, config.GetStreamingPublisherPublishConfig(), logger) -} - -func NewStreamingPublisherWithStanConn(conn stan.Conn, config StreamingPublisherPublishConfig, logger watermill.LoggerAdapter) (*StreamingPublisher, error) { - if logger == nil { - logger = watermill.NopLogger{} - } - - return &StreamingPublisher{ - conn: conn, - config: config, - logger: logger, - }, nil -} - -// Publish publishes message to NATS. -// -// Publish will not return until an ack has been received from NATS Streaming. -// When one of messages delivery fails - function is interrupted. -func (p StreamingPublisher) Publish(topic string, messages ...*message.Message) error { - for _, msg := range messages { - messageFields := watermill.LogFields{ - "message_uuid": msg.UUID, - "topic_name": topic, - } - - p.logger.Trace("Publishing message", messageFields) - - b, err := p.config.Marshaler.Marshal(topic, msg) - if err != nil { - return err - } - - if err := p.conn.Publish(topic, b); err != nil { - return errors.Wrap(err, "sending message failed") - } - } - - return nil -} - -func (p StreamingPublisher) Close() error { - p.logger.Trace("Closing publisher", nil) - defer p.logger.Trace("StreamingPublisher closed", nil) - - if err := p.conn.Close(); err != nil { - return errors.Wrap(err, "closing NATS conn failed") - } - - return nil -} diff --git a/message/infrastructure/nats/pubsub_stress_test.go b/message/infrastructure/nats/pubsub_stress_test.go deleted file mode 100644 index 73f96457d..000000000 --- a/message/infrastructure/nats/pubsub_stress_test.go +++ /dev/null @@ -1,23 +0,0 @@ -// +build stress - -package nats_test - -import ( - "testing" - - "github.com/ThreeDotsLabs/watermill/message/infrastructure" -) - -func TestPublishSubscribe_stress(t *testing.T) { - infrastructure.TestPubSubStressTest( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - }, - createPubSub, - createPubSubWithDurable, - ) -} diff --git a/message/infrastructure/nats/pubsub_test.go b/message/infrastructure/nats/pubsub_test.go deleted file mode 100644 index 3d2506550..000000000 --- a/message/infrastructure/nats/pubsub_test.go +++ /dev/null @@ -1,71 +0,0 @@ -package nats_test - -import ( - "os" - "testing" - "time" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/nats" - stan "github.com/nats-io/stan.go" - "github.com/stretchr/testify/require" -) - -func newPubSub(t *testing.T, clientID string, queueName string) (message.Publisher, message.Subscriber) { - logger := watermill.NewStdLogger(true, true) - - natsURL := os.Getenv("WATERMILL_TEST_NATS_URL") - if natsURL == "" { - natsURL = "nats://localhost:4222" - } - - pub, err := nats.NewStreamingPublisher(nats.StreamingPublisherConfig{ - ClusterID: "test-cluster", - ClientID: clientID + "_pub", - Marshaler: nats.GobMarshaler{}, - StanOptions: []stan.Option{ - stan.NatsURL(natsURL), - }, - }, logger) - require.NoError(t, err) - - sub, err := nats.NewStreamingSubscriber(nats.StreamingSubscriberConfig{ - ClusterID: "test-cluster", - ClientID: clientID + "_sub", - QueueGroup: queueName, - DurableName: "durable-name", - SubscribersCount: 1, - AckWaitTimeout: time.Second, // AckTiemout < 5 required for continueAfterErrors - Unmarshaler: nats.GobMarshaler{}, - StanOptions: []stan.Option{ - stan.NatsURL(natsURL), - }, - }, logger) - require.NoError(t, err) - - return pub, sub -} - -func createPubSub(t *testing.T) (message.Publisher, message.Subscriber) { - return newPubSub(t, watermill.NewUUID(), "test-queue") -} - -func createPubSubWithDurable(t *testing.T, consumerGroup string) (message.Publisher, message.Subscriber) { - return newPubSub(t, consumerGroup, consumerGroup) -} - -func TestPublishSubscribe(t *testing.T) { - infrastructure.TestPubSub( - t, - infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: false, - GuaranteedOrder: false, - Persistent: true, - }, - createPubSub, - createPubSubWithDurable, - ) -} diff --git a/message/infrastructure/nats/subscriber.go b/message/infrastructure/nats/subscriber.go deleted file mode 100644 index 62e84ae0b..000000000 --- a/message/infrastructure/nats/subscriber.go +++ /dev/null @@ -1,407 +0,0 @@ -package nats - -import ( - "context" - "sync" - "time" - - internalSync "github.com/ThreeDotsLabs/watermill/message/infrastructure/sync" - stan "github.com/nats-io/stan.go" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -type StreamingSubscriberConfig struct { - // ClusterID is the NATS Streaming cluster ID. - ClusterID string - - // ClientID is the NATS Streaming client ID to connect with. - // ClientID can contain only alphanumeric and `-` or `_` characters. - // - // Using DurableName causes the NATS Streaming server to track - // the last acknowledged message for that ClientID + DurableName. - ClientID string - - // QueueGroup is the NATS Streaming queue group. - // - // All subscriptions with the same queue name (regardless of the connection they originate from) - // will form a queue group. Each message will be delivered to only one subscriber per queue group, - // using queuing semantics. - // - // It is recommended to set it with DurableName. - // For non durable queue subscribers, when the last member leaves the group, - // that group is removed. A durable queue group (DurableName) allows you to have all members leave - // but still maintain state. When a member re-joins, it starts at the last position in that group. - // - // When QueueGroup is empty, subscribe without QueueGroup will be used. - QueueGroup string - - // DurableName is the NATS streaming durable name. - // - // Subscriptions may also specify a “durable name” which will survive client restarts. - // Durable subscriptions cause the server to track the last acknowledged message - // sequence number for a client and durable name. When the client restarts/resubscribes, - // and uses the same client ID and durable name, the server will resume delivery beginning - // with the earliest unacknowledged message for this durable subscription. - // - // Doing this causes the NATS Streaming server to track - // the last acknowledged message for that ClientID + DurableName. - DurableName string - - // SubscribersCount determines wow much concurrent subscribers should be started. - SubscribersCount int - - // CloseTimeout determines how long subscriber will wait for Ack/Nack on close. - // When no Ack/Nack is received after CloseTimeout, subscriber will be closed. - CloseTimeout time.Duration - - // How long subscriber should wait for Ack/Nack. When no Ack/Nack was received, message will be redelivered. - // It is mapped to stan.AckWait option. - AckWaitTimeout time.Duration - - // StanOptions are custom []stan.Option passed to the connection. - // It is also used to provide connection parameters, for example: - // stan.NatsURL("nats://localhost:4222") - StanOptions []stan.Option - - // StanSubscriptionOptions are custom []stan.SubscriptionOption passed to subscription. - StanSubscriptionOptions []stan.SubscriptionOption - - // Unmarshaler is an unmarshaler used to unmarshaling messages from NATS format to Watermill format. - Unmarshaler Unmarshaler -} - -type StreamingSubscriberSubscriptionConfig struct { - // StanSubscriptionOptions are custom []stan.SubscriptionOption passed to subscription. - StanSubscriptionOptions []stan.SubscriptionOption - - // Unmarshaler is an unmarshaler used to unmarshaling messages from NATS format to Watermill format. - Unmarshaler Unmarshaler - // QueueGroup is the NATS Streaming queue group. - // - // All subscriptions with the same queue name (regardless of the connection they originate from) - // will form a queue group. Each message will be delivered to only one subscriber per queue group, - // using queuing semantics. - // - // It is recommended to set it with DurableName. - // For non durable queue subscribers, when the last member leaves the group, - // that group is removed. A durable queue group (DurableName) allows you to have all members leave - // but still maintain state. When a member re-joins, it starts at the last position in that group. - // - // When QueueGroup is empty, subscribe without QueueGroup will be used. - QueueGroup string - - // DurableName is the NATS streaming durable name. - // - // Subscriptions may also specify a “durable name” which will survive client restarts. - // Durable subscriptions cause the server to track the last acknowledged message - // sequence number for a client and durable name. When the client restarts/resubscribes, - // and uses the same client ID and durable name, the server will resume delivery beginning - // with the earliest unacknowledged message for this durable subscription. - // - // Doing this causes the NATS Streaming server to track - // the last acknowledged message for that ClientID + DurableName. - DurableName string - - // SubscribersCount determines wow much concurrent subscribers should be started. - SubscribersCount int - - // How long subscriber should wait for Ack/Nack. When no Ack/Nack was received, message will be redelivered. - // It is mapped to stan.AckWait option. - AckWaitTimeout time.Duration - // CloseTimeout determines how long subscriber will wait for Ack/Nack on close. - // When no Ack/Nack is received after CloseTimeout, subscriber will be closed. - CloseTimeout time.Duration -} - -func (c *StreamingSubscriberConfig) GetStreamingSubscriberSubscriptionConfig() StreamingSubscriberSubscriptionConfig { - return StreamingSubscriberSubscriptionConfig{ - StanSubscriptionOptions: c.StanSubscriptionOptions, - Unmarshaler: c.Unmarshaler, - QueueGroup: c.QueueGroup, - DurableName: c.DurableName, - SubscribersCount: c.SubscribersCount, - AckWaitTimeout: c.AckWaitTimeout, - CloseTimeout: c.CloseTimeout, - } -} - -func (c *StreamingSubscriberConfig) setDefaults() { - if c.SubscribersCount <= 0 { - c.SubscribersCount = 1 - } - if c.CloseTimeout <= 0 { - c.CloseTimeout = time.Second * 30 - } - if c.AckWaitTimeout <= 0 { - c.AckWaitTimeout = time.Second * 30 - } - - c.StanSubscriptionOptions = append( - c.StanSubscriptionOptions, - stan.SetManualAckMode(), // manual AckMode is required to support acking/nacking by client - stan.AckWait(c.AckWaitTimeout), - ) - - if c.DurableName != "" { - c.StanSubscriptionOptions = append(c.StanSubscriptionOptions, stan.DurableName(c.DurableName)) - } -} - -func (c *StreamingSubscriberSubscriptionConfig) Validate() error { - if c.Unmarshaler == nil { - return errors.New("StreamingSubscriberConfig.Unmarshaler is missing") - } - - if c.QueueGroup == "" && c.SubscribersCount > 1 { - return errors.New( - "to set StreamingSubscriberConfig.SubscribersCount " + - "you need to also set StreamingSubscriberConfig.QueueGroup, " + - "in other case you will receive duplicated messages", - ) - } - - return nil -} - -type StreamingSubscriber struct { - conn stan.Conn - logger watermill.LoggerAdapter - - config StreamingSubscriberSubscriptionConfig - - subs []stan.Subscription - subsLock sync.RWMutex - - closed bool - closing chan struct{} - - outputsWg sync.WaitGroup - processingMessagesWg sync.WaitGroup -} - -// NewStreamingSubscriber creates a new StreamingSubscriber. -// -// When using custom NATS hostname, you should pass it by options StreamingSubscriberConfig.StanOptions: -// // ... -// StanOptions: []stan.Option{ -// stan.NatsURL("nats://your-nats-hostname:4222"), -// } -// // ... -func NewStreamingSubscriber(config StreamingSubscriberConfig, logger watermill.LoggerAdapter) (*StreamingSubscriber, error) { - config.setDefaults() - - conn, err := stan.Connect(config.ClusterID, config.ClientID, config.StanOptions...) - if err != nil { - return nil, errors.Wrap(err, "cannot connect to NATS") - } - return NewStreamingSubscriberWithStanConn(conn, config.GetStreamingSubscriberSubscriptionConfig(), logger) -} - -func NewStreamingSubscriberWithStanConn(conn stan.Conn, config StreamingSubscriberSubscriptionConfig, logger watermill.LoggerAdapter) (*StreamingSubscriber, error) { - if err := config.Validate(); err != nil { - return nil, err - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - return &StreamingSubscriber{ - conn: conn, - logger: logger, - config: config, - closing: make(chan struct{}), - }, nil -} - -// Subscribe subscribes messages from NATS Streaming. -// -// Subscribe will spawn SubscribersCount goroutines making subscribe. -func (s *StreamingSubscriber) Subscribe(ctx context.Context, topic string) (<-chan *message.Message, error) { - output := make(chan *message.Message, 0) - s.outputsWg.Add(1) - - for i := 0; i < s.config.SubscribersCount; i++ { - subscriberLogFields := watermill.LogFields{ - "subscriber_num": i, - "topic": topic, - } - - s.logger.Debug("Starting subscriber", subscriberLogFields) - - processMessagesWg := &sync.WaitGroup{} - - sub, err := s.subscribe(ctx, output, topic, subscriberLogFields, processMessagesWg) - if err != nil { - return nil, errors.Wrap(err, "cannot subscribe") - } - - go func(subscriber stan.Subscription, subscriberLogFields watermill.LogFields) { - select { - case <-s.closing: - // unblock - case <-ctx.Done(): - // unblock - } - if err := sub.Close(); err != nil { - s.logger.Error("Cannot close subscriber", err, subscriberLogFields) - } - - processMessagesWg.Wait() - close(output) - s.outputsWg.Done() - }(sub, subscriberLogFields) - - s.subsLock.Lock() - s.subs = append(s.subs, sub) - s.subsLock.Unlock() - } - - return output, nil -} - -func (s *StreamingSubscriber) SubscribeInitialize(topic string) (err error) { - sub, err := s.subscribe( - context.Background(), - make(chan *message.Message), - topic, - nil, - &sync.WaitGroup{}, - ) - if err != nil { - return errors.Wrap(err, "cannot initialize subscribe") - } - - return errors.Wrap(sub.Close(), "cannot close after subscribe initialize") -} - -func (s *StreamingSubscriber) subscribe( - ctx context.Context, - output chan *message.Message, - topic string, - subscriberLogFields watermill.LogFields, - processMessagesWg *sync.WaitGroup, -) (stan.Subscription, error) { - if s.config.QueueGroup != "" { - return s.conn.QueueSubscribe( - topic, - s.config.QueueGroup, - func(m *stan.Msg) { - if s.isClosed() { - return - } - - processMessagesWg.Add(1) - defer processMessagesWg.Done() - - s.processMessage(ctx, m, output, subscriberLogFields) - }, - s.config.StanSubscriptionOptions..., - ) - } - - return s.conn.Subscribe( - topic, - func(m *stan.Msg) { - processMessagesWg.Add(1) - defer processMessagesWg.Done() - - s.processMessage(ctx, m, output, subscriberLogFields) - }, - s.config.StanSubscriptionOptions..., - ) -} - -func (s *StreamingSubscriber) processMessage( - ctx context.Context, - m *stan.Msg, - output chan *message.Message, - logFields watermill.LogFields, -) { - if s.isClosed() { - return - } - - s.processingMessagesWg.Add(1) - defer s.processingMessagesWg.Done() - - s.logger.Trace("Received message", logFields) - - msg, err := s.config.Unmarshaler.Unmarshal(m) - if err != nil { - s.logger.Error("Cannot unmarshal message", err, logFields) - return - } - - ctx, cancelCtx := context.WithCancel(ctx) - msg.SetContext(ctx) - defer cancelCtx() - - messageLogFields := logFields.Add(watermill.LogFields{"message_uuid": msg.UUID}) - s.logger.Trace("Unmarshaled message", messageLogFields) - - select { - case output <- msg: - s.logger.Trace("Message sent to consumer", messageLogFields) - case <-s.closing: - s.logger.Trace("Closing, message discarded", messageLogFields) - return - case <-ctx.Done(): - s.logger.Trace("Context cancelled, message discarded", messageLogFields) - return - } - - select { - case <-msg.Acked(): - if err := m.Ack(); err != nil { - s.logger.Error("Cannot send ack", err, messageLogFields) - } - s.logger.Trace("Message Acked", messageLogFields) - case <-msg.Nacked(): - s.logger.Trace("Message Nacked", messageLogFields) - return - case <-time.After(s.config.AckWaitTimeout): - s.logger.Trace("Ack timeouted", messageLogFields) - return - case <-s.closing: - s.logger.Trace("Closing, message discarded before ack", messageLogFields) - return - case <-ctx.Done(): - s.logger.Trace("Context cancelled, message discarded before ack", messageLogFields) - return - } -} - -func (s *StreamingSubscriber) Close() error { - s.subsLock.Lock() - defer s.subsLock.Unlock() - - if s.closed { - return nil - } - s.closed = true - - s.logger.Debug("Closing subscriber", nil) - defer s.logger.Info("StreamingSubscriber closed", nil) - - var result error - - close(s.closing) - internalSync.WaitGroupTimeout(&s.outputsWg, s.config.CloseTimeout) - - if err := s.conn.Close(); err != nil { - return errors.Wrap(err, "cannot close conn") - } - - return result -} - -func (s *StreamingSubscriber) isClosed() bool { - s.subsLock.RLock() - defer s.subsLock.RUnlock() - - return s.closed -} diff --git a/message/infrastructure/sql/offsets_adapter.go b/message/infrastructure/sql/offsets_adapter.go deleted file mode 100644 index 6300b755b..000000000 --- a/message/infrastructure/sql/offsets_adapter.go +++ /dev/null @@ -1,76 +0,0 @@ -package sql - -type OffsetsAdapter interface { - // AckMessageQuery the SQL query and arguments that will mark a message as read for a given consumer group. - AckMessageQuery(topic string, offset int, consumerGroup string) (string, []interface{}) - - // ConsumedMessageQuery will return the SQL query and arguments which be executed after consuming message, - // but before ack. - // - // ConsumedMessageQuery is optional, and will be not executed if query is empty. - ConsumedMessageQuery(topic string, offset int, consumerGroup string, consumerULID []byte) (string, []interface{}) - - // NextOffsetQuery returns the SQL query and arguments which should return offset of next message to consume. - NextOffsetQuery(topic, consumerGroup string) (string, []interface{}) - - // SchemaInitializingQueries returns SQL queries which will make sure (CREATE IF NOT EXISTS) - // that the appropriate tables exist to write messages to the given topic. - SchemaInitializingQueries(topic string) []string -} - -// DefaultMySQLOffsetsAdapter is adapter for storing offsets for MySQL (or MariaDB) databases. -// -// DefaultMySQLOffsetsAdapter is designed to support multiple subscribers with exactly once delivery -// and guaranteed order. -// -// We are using FOR UPDATE in NextOffsetQuery to lock consumer group in offsets table. -// -// When another consumer is trying to consume the same message, deadlock should occur in ConsumedMessageQuery. -// After deadlock, consumer will consume next message. -type DefaultMySQLOffsetsAdapter struct { - // GenerateMessagesOffsetsTableName may be used to override how the messages/offsets table name is generated. - GenerateMessagesOffsetsTableName func(topic string) string -} - -func (s DefaultMySQLOffsetsAdapter) SchemaInitializingQueries(topic string) []string { - return []string{` - CREATE TABLE IF NOT EXISTS ` + s.MessagesOffsetsTable(topic) + ` ( - consumer_group VARCHAR(255) NOT NULL, - offset_acked BIGINT, - offset_consumed BIGINT NOT NULL, - PRIMARY KEY(consumer_group) - )`} -} - -func (s DefaultMySQLOffsetsAdapter) AckMessageQuery(topic string, offset int, consumerGroup string) (string, []interface{}) { - ackQuery := `UPDATE ` + s.MessagesOffsetsTable(topic) + ` SET offset_acked=? WHERE consumer_group = ?` - - return ackQuery, []interface{}{offset, consumerGroup} -} - -func (s DefaultMySQLOffsetsAdapter) NextOffsetQuery(topic, consumerGroup string) (string, []interface{}) { - return ` - SELECT COALESCE(MAX(offset_acked), 0) - FROM ` + s.MessagesOffsetsTable(topic) + ` - WHERE consumer_group=? FOR UPDATE`, []interface{}{consumerGroup} -} - -func (s DefaultMySQLOffsetsAdapter) MessagesOffsetsTable(topic string) string { - if s.GenerateMessagesOffsetsTableName != nil { - return s.GenerateMessagesOffsetsTableName(topic) - } - return "watermill_offsets_" + topic -} - -func (s DefaultMySQLOffsetsAdapter) ConsumedMessageQuery( - topic string, - offset int, - consumerGroup string, - consumerULID []byte, -) (string, []interface{}) { - // offset_consumed is not queried anywhere, it's used only to detect race conditions with NextOffsetQuery. - ackQuery := `INSERT INTO ` + s.MessagesOffsetsTable(topic) + ` (offset_consumed, consumer_group) - VALUES (?, ?) ON DUPLICATE KEY UPDATE offset_consumed=VALUES(offset_consumed)` - - return ackQuery, []interface{}{offset, consumerGroup} -} diff --git a/message/infrastructure/sql/publisher.go b/message/infrastructure/sql/publisher.go deleted file mode 100644 index 689485bf5..000000000 --- a/message/infrastructure/sql/publisher.go +++ /dev/null @@ -1,154 +0,0 @@ -package sql - -import ( - "context" - "sync" - - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -var ( - ErrPublisherClosed = errors.New("publisher is closed") -) - -type PublisherConfig struct { - // SchemaAdapter provides the schema-dependent queries and arguments for them, based on topic/message etc. - SchemaAdapter SchemaAdapter - - // AutoInitializeSchema enables initialization of schema database during publish. - // Schema is initialized once per topic per publisher instance. - AutoInitializeSchema bool -} - -func (c PublisherConfig) validate() error { - if c.SchemaAdapter == nil { - return errors.New("schema adapter is nil") - } - - return nil -} - -func (c *PublisherConfig) setDefaults() { -} - -// Publisher inserts the Messages as rows into a SQL table.. -type Publisher struct { - config PublisherConfig - - db db - - publishWg *sync.WaitGroup - closeCh chan struct{} - closed bool - - initializedTopics sync.Map - logger watermill.LoggerAdapter -} - -func NewPublisher(db db, config PublisherConfig, logger watermill.LoggerAdapter) (*Publisher, error) { - config.setDefaults() - if err := config.validate(); err != nil { - return nil, errors.Wrap(err, "invalid config") - } - - if db == nil { - return nil, errors.New("db is nil") - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - return &Publisher{ - config: config, - db: db, - - publishWg: new(sync.WaitGroup), - closeCh: make(chan struct{}), - closed: false, - - logger: logger, - }, nil -} - -// Publish inserts the messages as rows into the MessagesTable. -// Order is guaranteed for messages within one call. -// Publish is blocking until all rows have been added to the Publisher's transaction. -// Publisher doesn't guarantee publishing messages in a single transaction, -// but the constructor accepts both *sql.DB and *sql.Tx, so transactions may be handled upstream by the user. -func (p *Publisher) Publish(topic string, messages ...*message.Message) (err error) { - if p.closed { - return ErrPublisherClosed - } - - p.publishWg.Add(1) - defer p.publishWg.Done() - - if err := validateTopicName(topic); err != nil { - return err - } - - if err := p.initializeSchema(topic); err != nil { - return err - } - - insertQuery, insertArgs, err := p.config.SchemaAdapter.InsertQuery(topic, messages) - if err != nil { - return errors.Wrap(err, "cannot create insert query") - } - - p.logger.Trace("Inserting message to SQL", watermill.LogFields{ - "query": insertQuery, - "query_args": sqlArgsToLog(insertArgs), - }) - - _, err = p.db.ExecContext(context.Background(), insertQuery, insertArgs...) - if err != nil { - return errors.Wrap(err, "could not insert message as row") - } - - return nil -} - -func (p *Publisher) initializeSchema(topic string) error { - if !p.config.AutoInitializeSchema { - return nil - } - - if _, ok := p.initializedTopics.Load(topic); ok { - return nil - } - - if err := initializeSchema( - context.Background(), - topic, - p.logger, - p.db, - p.config.SchemaAdapter, - nil, - ); err != nil { - return errors.Wrap(err, "cannot initialize schema") - } - - p.initializedTopics.Store(topic, struct{}{}) - return nil -} - -// Close closes the publisher, which means that all the Publish calls called before are finished -// and no more Publish calls are accepted. -// Close is blocking until all the ongoing Publish calls have returned. -func (p *Publisher) Close() error { - if p.closed { - return nil - } - - p.closed = true - - close(p.closeCh) - p.publishWg.Wait() - - return nil -} diff --git a/message/infrastructure/sql/pubsub_test.go b/message/infrastructure/sql/pubsub_test.go deleted file mode 100644 index 88c636615..000000000 --- a/message/infrastructure/sql/pubsub_test.go +++ /dev/null @@ -1,105 +0,0 @@ -package sql_test - -import ( - stdSQL "database/sql" - "os" - "testing" - "time" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/sql" - - driver "github.com/go-sql-driver/mysql" - "github.com/stretchr/testify/require" -) - -var ( - logger = watermill.NewStdLogger(true, true) -) - -func newPubSub(t *testing.T, db *stdSQL.DB, consumerGroup string) (message.Publisher, message.Subscriber) { - schemaAdapter := &testSchema{ - sql.DefaultSchema{ - GenerateMessagesTableName: func(topic string) string { - return "`test_" + topic + "`" - }, - }, - } - offsetsAdapter := sql.DefaultMySQLOffsetsAdapter{ - GenerateMessagesOffsetsTableName: func(topic string) string { - return "`test_offsets_" + topic + "`" - }, - } - - publisher, err := sql.NewPublisher( - db, - sql.PublisherConfig{ - SchemaAdapter: schemaAdapter, - }, - logger, - ) - require.NoError(t, err) - - subscriber, err := sql.NewSubscriber( - db, - sql.SubscriberConfig{ - ConsumerGroup: consumerGroup, - - PollInterval: 100 * time.Millisecond, - ResendInterval: 50 * time.Millisecond, - SchemaAdapter: schemaAdapter, - OffsetsAdapter: offsetsAdapter, - }, - logger, - ) - require.NoError(t, err) - - return publisher, subscriber -} - -func newMySQL(t *testing.T) *stdSQL.DB { - addr := os.Getenv("WATERMILL_TEST_MYSQL_HOST") - if addr == "" { - addr = "localhost" - } - conf := driver.NewConfig() - conf.Net = "tcp" - conf.User = "root" - conf.Addr = addr - - conf.DBName = "watermill" - - db, err := stdSQL.Open("mysql", conf.FormatDSN()) - require.NoError(t, err) - - err = db.Ping() - require.NoError(t, err) - - return db -} - -func createPubSubWithConsumerGroup(t *testing.T, consumerGroup string) (message.Publisher, message.Subscriber) { - return newPubSub(t, newMySQL(t), consumerGroup) -} - -func createPubSub(t *testing.T) (message.Publisher, message.Subscriber) { - return createPubSubWithConsumerGroup(t, "test") -} - -func TestPublishSubscribe(t *testing.T) { - features := infrastructure.Features{ - ConsumerGroups: true, - ExactlyOnceDelivery: true, - GuaranteedOrder: true, - Persistent: true, - } - - infrastructure.TestPubSub( - t, - features, - createPubSub, - createPubSubWithConsumerGroup, - ) -} diff --git a/message/infrastructure/sql/schema.go b/message/infrastructure/sql/schema.go deleted file mode 100644 index b22b7ee80..000000000 --- a/message/infrastructure/sql/schema.go +++ /dev/null @@ -1,40 +0,0 @@ -package sql - -import ( - "context" - - "github.com/ThreeDotsLabs/watermill" - "github.com/pkg/errors" -) - -func initializeSchema( - ctx context.Context, - topic string, - logger watermill.LoggerAdapter, - db db, - schemaAdapter SchemaAdapter, - offsetsAdapter OffsetsAdapter, -) error { - err := validateTopicName(topic) - if err != nil { - return err - } - - initializingQueries := schemaAdapter.SchemaInitializingQueries(topic) - if offsetsAdapter != nil { - initializingQueries = append(initializingQueries, offsetsAdapter.SchemaInitializingQueries(topic)...) - } - - logger.Info("Initializing subscriber schema", watermill.LogFields{ - "query": initializingQueries, - }) - - for _, q := range initializingQueries { - _, err := db.ExecContext(ctx, q) - if err != nil { - return errors.Wrap(err, "cound not initialize schema") - } - } - - return nil -} diff --git a/message/infrastructure/sql/schema_adapter.go b/message/infrastructure/sql/schema_adapter.go deleted file mode 100644 index 3ba07effa..000000000 --- a/message/infrastructure/sql/schema_adapter.go +++ /dev/null @@ -1,142 +0,0 @@ -package sql - -import ( - "database/sql" - "encoding/json" - "fmt" - "strings" - - "github.com/ThreeDotsLabs/watermill/message" - "github.com/pkg/errors" -) - -// SchemaAdapter produces the SQL queries and arguments appropriately for a specific schema and dialect -// It also transforms sql.Rows into Watermill messages. -type SchemaAdapter interface { - // InsertQuery returns the SQL query and arguments that will insert the Watermill message into the SQL storage. - InsertQuery(topic string, msgs message.Messages) (string, []interface{}, error) - - // SelectQuery returns the the SQL query and arguments - // that returns the next unread message for a given consumer group. - SelectQuery(topic string, consumerGroup string, offsetsAdapter OffsetsAdapter) (string, []interface{}) - - // UnmarshalMessage transforms the Row obtained SelectQuery a Watermill message. - // It also returns the offset of the last read message, for the purpose of acking. - UnmarshalMessage(row *sql.Row) (offset int, msg *message.Message, err error) - - // SchemaInitializingQueries returns SQL queries which will make sure (CREATE IF NOT EXISTS) - // that the appropriate tables exist to write messages to the given topic. - SchemaInitializingQueries(topic string) []string -} - -// DefaultSchema is a default implementation of SchemaAdapter. -// If you need some customization, you can use composition to change schema and method of unmarshaling. -// -// type MyMessagesSchema struct { -// DefaultSchema -// } -// -// func (m MyMessagesSchema) SchemaInitializingQueries(topic string) []string { -// createMessagesTable := strings.Join([]string{ -// "CREATE TABLE IF NOT EXISTS " + m.MessagesTable(topic) + " (", -// "`offset` BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,", -// "`uuid` BINARY(16) NOT NULL,", -// "`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,", -// "`payload` JSON DEFAULT NULL,", -// "`metadata` JSON DEFAULT NULL", -// ");", -// }, "\n") -// -// return []string{createMessagesTable} -// } -// -// func (m MyMessagesSchema) UnmarshalMessage(row *sql.Row) (offset int, msg *message.Message, err error) { -// // ... -// -// For debugging your custom schema, we recommend to inject logger with trace logging level -// which will print all SQL queries. -type DefaultSchema struct { - // GenerateMessagesTableName may be used to override how the messages table name is generated. - GenerateMessagesTableName func(topic string) string -} - -func (s DefaultSchema) SchemaInitializingQueries(topic string) []string { - createMessagesTable := strings.Join([]string{ - "CREATE TABLE IF NOT EXISTS " + s.MessagesTable(topic) + " (", - "`offset` BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,", - "`uuid` VARCHAR(36) NOT NULL,", - "`created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,", - "`payload` JSON DEFAULT NULL,", - "`metadata` JSON DEFAULT NULL", - ");", - }, "\n") - - return []string{createMessagesTable} -} - -func (s DefaultSchema) InsertQuery(topic string, msgs message.Messages) (string, []interface{}, error) { - insertQuery := fmt.Sprintf( - `INSERT INTO %s (uuid, payload, metadata) VALUES %s`, - s.MessagesTable(topic), - strings.TrimRight(strings.Repeat(`(?,?,?),`, len(msgs)), ","), - ) - - var args []interface{} - for _, msg := range msgs { - metadata, err := json.Marshal(msg.Metadata) - if err != nil { - return "", nil, errors.Wrapf(err, "could not marshal metadata into JSON for message %s", msg.UUID) - } - - args = append(args, msg.UUID, msg.Payload, metadata) - } - - return insertQuery, args, nil -} - -func (s DefaultSchema) SelectQuery(topic string, consumerGroup string, offsetsAdapter OffsetsAdapter) (string, []interface{}) { - nextOffsetQuery, nextOffsetArgs := offsetsAdapter.NextOffsetQuery(topic, consumerGroup) - - selectQuery := ` - SELECT offset,uuid,payload,metadata FROM ` + s.MessagesTable(topic) + ` - WHERE - offset > (` + nextOffsetQuery + `) - ORDER BY - offset ASC - LIMIT 1` - - return selectQuery, nextOffsetArgs -} - -type defaultSchemaRow struct { - Offset int64 - UUID []byte - Payload []byte - Metadata []byte -} - -func (s DefaultSchema) UnmarshalMessage(row *sql.Row) (offset int, msg *message.Message, err error) { - r := defaultSchemaRow{} - err = row.Scan(&r.Offset, &r.UUID, &r.Payload, &r.Metadata) - if err != nil { - return 0, nil, errors.Wrap(err, "could not scan message row") - } - - msg = message.NewMessage(string(r.UUID), r.Payload) - - if r.Metadata != nil { - err = json.Unmarshal(r.Metadata, &msg.Metadata) - if err != nil { - return 0, nil, errors.Wrap(err, "could not unmarshal metadata as JSON") - } - } - - return int(r.Offset), msg, nil -} - -func (s DefaultSchema) MessagesTable(topic string) string { - if s.GenerateMessagesTableName != nil { - return s.GenerateMessagesTableName(topic) - } - return "`watermill_" + topic + "`" -} diff --git a/message/infrastructure/sql/schema_adapter_test.go b/message/infrastructure/sql/schema_adapter_test.go deleted file mode 100644 index 71c5411c0..000000000 --- a/message/infrastructure/sql/schema_adapter_test.go +++ /dev/null @@ -1,27 +0,0 @@ -package sql_test - -import ( - "strings" - - "github.com/ThreeDotsLabs/watermill/message/infrastructure/sql" -) - -// testSchema makes the following changes to DefaultSchema to comply with tests: -// - uuid is a VARCHAR(255) instead of VARCHAR(36); some UUIDs in tests are bigger and we don't care for storage use -// - payload is a VARBINARY(255) instead of JSON; tests don't presuppose JSON-marshallable payloads -type testSchema struct { - sql.DefaultSchema -} - -func (s *testSchema) SchemaInitializingQueries(topic string) []string { - createMessagesTable := strings.Join([]string{ - "CREATE TABLE IF NOT EXISTS " + s.MessagesTable(topic) + " (", - "`offset` BIGINT NOT NULL AUTO_INCREMENT PRIMARY KEY,", - "`uuid` VARCHAR(255) NOT NULL,", - "`payload` VARBINARY(255) DEFAULT NULL,", - "`metadata` JSON DEFAULT NULL", - ");", - }, "\n") - - return []string{createMessagesTable} -} diff --git a/message/infrastructure/sql/sql.go b/message/infrastructure/sql/sql.go deleted file mode 100644 index 7498a795f..000000000 --- a/message/infrastructure/sql/sql.go +++ /dev/null @@ -1,30 +0,0 @@ -package sql - -import ( - "context" - "database/sql" - "fmt" - "strings" -) - -// db is implemented both by *sql.DB and *sql.Tx -type db interface { - ExecContext(ctx context.Context, query string, args ...interface{}) (sql.Result, error) -} - -// sqlArgsToLog is used for "lazy" generating sql args strings to logger -type sqlArgsToLog []interface{} - -func (s sqlArgsToLog) String() string { - var strArgs []string - for _, arg := range s { - strArgs = append(strArgs, fmt.Sprintf("%s", arg)) - } - - return strings.Join(strArgs, ",") -} - -func isDeadlock(err error) bool { - // ugly, but should be universal for multiple sql implementations - return strings.Contains(strings.ToLower(err.Error()), "deadlock") -} diff --git a/message/infrastructure/sql/subscriber.go b/message/infrastructure/sql/subscriber.go deleted file mode 100644 index 51133ddcd..000000000 --- a/message/infrastructure/sql/subscriber.go +++ /dev/null @@ -1,373 +0,0 @@ -package sql - -import ( - "context" - "database/sql" - "sync" - "time" - - "github.com/oklog/ulid" - "github.com/pkg/errors" - - "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message" -) - -var ( - ErrSubscriberClosed = errors.New("subscriber is closed") -) - -type SubscriberConfig struct { - ConsumerGroup string - - // PollInterval is the interval to wait between subsequent SELECT queries, if no more messages were found in the database. - // Must be non-negative. Defaults to 1s. - PollInterval time.Duration - - // ResendInterval is the time to wait before resending a nacked message. - // Must be non-negative. Defaults to 1s. - ResendInterval time.Duration - - // RetryInterval is the time to wait before resuming querying for messages after an error. - // Must be non-negative. Defaults to 1s. - RetryInterval time.Duration - - // SchemaAdapter provides the schema-dependent queries and arguments for them, based on topic/message etc. - SchemaAdapter SchemaAdapter - - // OffsetsAdapter provides mechanism for saving acks and offsets of consumers. - OffsetsAdapter OffsetsAdapter - - // InitializeSchema option enables initializing schema on making subscription. - InitializeSchema bool -} - -func (c *SubscriberConfig) setDefaults() { - if c.PollInterval == 0 { - c.PollInterval = time.Second - } - if c.ResendInterval == 0 { - c.ResendInterval = time.Second - } - if c.RetryInterval == 0 { - c.RetryInterval = time.Second - } -} - -func (c SubscriberConfig) validate() error { - if c.PollInterval <= 0 { - return errors.New("poll interval must be a positive duration") - } - if c.ResendInterval <= 0 { - return errors.New("resend interval must be a positive duration") - } - if c.RetryInterval <= 0 { - return errors.New("resend interval must be a positive duration") - } - if c.SchemaAdapter == nil { - return errors.New("schema adapter is nil") - } - if c.OffsetsAdapter == nil { - return errors.New("offsets adapter is nil") - } - - return nil -} - -// Subscriber makes SELECT queries on the chosen table with the interval defined in the config. -// The rows are unmarshaled into Watermill messages. -type Subscriber struct { - consumerIdBytes []byte - consumerIdString string - - db *sql.DB - config SubscriberConfig - - subscribeWg *sync.WaitGroup - closing chan struct{} - closed bool - - logger watermill.LoggerAdapter -} - -func NewSubscriber(db *sql.DB, config SubscriberConfig, logger watermill.LoggerAdapter) (*Subscriber, error) { - if db == nil { - return nil, errors.New("db is nil") - } - config.setDefaults() - err := config.validate() - if err != nil { - return nil, errors.Wrap(err, "invalid config") - } - - if logger == nil { - logger = watermill.NopLogger{} - } - - idBytes, idStr, err := newSubscriberID() - if err != nil { - return &Subscriber{}, errors.Wrap(err, "cannot generate subscriber id") - } - logger = logger.With(watermill.LogFields{"subscriber_id": idStr}) - - sub := &Subscriber{ - consumerIdBytes: idBytes, - consumerIdString: idStr, - - db: db, - config: config, - - subscribeWg: &sync.WaitGroup{}, - closing: make(chan struct{}), - - logger: logger, - } - - return sub, nil -} - -func newSubscriberID() ([]byte, string, error) { - id := watermill.NewULID() - idBytes, err := ulid.MustParseStrict(id).MarshalBinary() - if err != nil { - return nil, "", errors.Wrap(err, "cannot marshal subscriber id") - } - - return idBytes, id, nil -} - -func (s *Subscriber) Subscribe(ctx context.Context, topic string) (o <-chan *message.Message, err error) { - if s.closed { - return nil, ErrSubscriberClosed - } - - if err = validateTopicName(topic); err != nil { - return nil, err - } - - if s.config.InitializeSchema { - if err := s.SubscribeInitialize(topic); err != nil { - return nil, err - } - } - - // the information about closing the subscriber is propagated through ctx - ctx, cancel := context.WithCancel(ctx) - out := make(chan *message.Message) - - s.subscribeWg.Add(1) - go func() { - s.consume(ctx, topic, out) - close(out) - cancel() - }() - - return out, nil -} - -func (s *Subscriber) consume(ctx context.Context, topic string, out chan *message.Message) { - defer s.subscribeWg.Done() - - logger := s.logger.With(watermill.LogFields{ - "topic": topic, - "consumer_group": s.config.ConsumerGroup, - }) - - for { - select { - case <-s.closing: - logger.Info("Discarding queued message, subscriber closing", nil) - return - - case <-ctx.Done(): - logger.Info("Stopping consume, context canceled", nil) - return - - default: - // go on querying - } - - messageUUID, err := s.query(ctx, topic, out, logger) - if err != nil && isDeadlock(err) { - logger.Debug("Deadlock during querying message, trying again", watermill.LogFields{ - "err": err.Error(), - "message_uuid": messageUUID, - }) - } else if err != nil { - logger.Error("Error querying for message", err, nil) - time.Sleep(s.config.RetryInterval) - } - } -} - -func (s *Subscriber) query( - ctx context.Context, - topic string, - out chan *message.Message, - logger watermill.LoggerAdapter, -) (messageUUID string, err error) { - tx, err := s.db.BeginTx(ctx, &sql.TxOptions{}) - if err != nil { - return "", errors.Wrap(err, "could not begin tx for querying") - } - - defer func() { - if err != nil { - rollbackErr := tx.Rollback() - if rollbackErr != nil { - logger.Error("could not rollback tx for querying message", rollbackErr, nil) - } - } else { - commitErr := tx.Commit() - if commitErr != nil { - logger.Error("could not commit tx for querying message", commitErr, nil) - } - } - }() - - selectQuery, selectQueryArgs := s.config.SchemaAdapter.SelectQuery( - topic, - s.config.ConsumerGroup, - s.config.OffsetsAdapter, - ) - logger.Trace("Querying message", watermill.LogFields{ - "query": selectQuery, - "query_args": sqlArgsToLog(selectQueryArgs), - }) - row := tx.QueryRowContext(ctx, selectQuery, selectQueryArgs...) - - offset, msg, err := s.config.SchemaAdapter.UnmarshalMessage(row) - if errors.Cause(err) == sql.ErrNoRows { - // wait until polling for the next message - logger.Debug("No more messages, waiting until next query", watermill.LogFields{ - "wait_time": s.config.PollInterval, - }) - time.Sleep(s.config.PollInterval) - return "", nil - } else if err != nil { - return "", errors.Wrap(err, "could not unmarshal message from query") - } - - logger = logger.With(watermill.LogFields{ - "msg_uuid": msg.UUID, - }) - logger.Trace("Received message", nil) - - consumedQuery, consumedArgs := s.config.OffsetsAdapter.ConsumedMessageQuery( - topic, - offset, - s.config.ConsumerGroup, - s.consumerIdBytes, - ) - if consumedQuery != "" { - logger.Trace("Executing query to confirm message consumed", watermill.LogFields{ - "query": consumedQuery, - "query_args": sqlArgsToLog(consumedArgs), - }) - - _, err := tx.Exec(consumedQuery, consumedArgs...) - if err != nil { - return msg.UUID, errors.Wrap(err, "cannot send consumed query") - } - } - - acked := s.sendMessage(ctx, msg, out, logger) - if acked { - ackQuery, ackArgs := s.config.OffsetsAdapter.AckMessageQuery(topic, offset, s.config.ConsumerGroup) - - logger.Trace("Executing ack message query", watermill.LogFields{ - "query": ackQuery, - "query_args": sqlArgsToLog(ackArgs), - }) - - result, err := tx.ExecContext(ctx, ackQuery, ackArgs...) - if err != nil { - return msg.UUID, errors.Wrap(err, "could not get args for acking the message") - } - - rowsAffected, _ := result.RowsAffected() - - logger.Trace("Executed ack message query", watermill.LogFields{ - "rows_affected": rowsAffected, - }) - } - - return msg.UUID, nil -} - -// sendMessages sends messages on the output channel. -func (s *Subscriber) sendMessage( - ctx context.Context, - msg *message.Message, - out chan *message.Message, - logger watermill.LoggerAdapter, -) (acked bool) { - msgCtx, cancel := context.WithCancel(ctx) - msg.SetContext(msgCtx) - defer cancel() - -ResendLoop: - for { - - select { - case out <- msg: - - case <-s.closing: - logger.Info("Discarding queued message, subscriber closing", nil) - return false - - case <-ctx.Done(): - logger.Info("Discarding queued message, context canceled", nil) - return false - } - - select { - case <-msg.Acked(): - logger.Debug("Message acked by subscriber", nil) - return true - - case <-msg.Nacked(): - //message nacked, try resending - logger.Debug("Message nacked, resending", nil) - msg = msg.Copy() - - if s.config.ResendInterval != 0 { - time.Sleep(s.config.ResendInterval) - } - - continue ResendLoop - - case <-s.closing: - logger.Info("Discarding queued message, subscriber closing", nil) - return false - - case <-ctx.Done(): - logger.Info("Discarding queued message, context canceled", nil) - return false - } - } -} - -func (s *Subscriber) Close() error { - if s.closed { - return nil - } - - s.closed = true - - close(s.closing) - s.subscribeWg.Wait() - - return nil -} - -func (s *Subscriber) SubscribeInitialize(topic string) error { - return initializeSchema( - context.Background(), - topic, - s.logger, - s.db, - s.config.SchemaAdapter, - s.config.OffsetsAdapter, - ) -} diff --git a/message/infrastructure/sql/topic.go b/message/infrastructure/sql/topic.go deleted file mode 100644 index e35a72e5e..000000000 --- a/message/infrastructure/sql/topic.go +++ /dev/null @@ -1,21 +0,0 @@ -package sql - -import ( - "regexp" - - "github.com/pkg/errors" -) - -var disallowedTopicCharacters = regexp.MustCompile(`[^A-Za-z0-9\-\$\:\.\_]`) - -var ErrInvalidTopicName = errors.New("topic name should not contain characters matched by " + disallowedTopicCharacters.String()) - -// validateTopicName checks if the topic name contains any characters which could be unsuitable for the SQL Pub/Sub. -// Topics are translated into SQL tables and patched into some queries, so this is done to prevent injection as well. -func validateTopicName(topic string) error { - if disallowedTopicCharacters.MatchString(topic) { - return errors.Wrap(ErrInvalidTopicName, topic) - } - - return nil -} diff --git a/message/infrastructure/sql/topic_test.go b/message/infrastructure/sql/topic_test.go deleted file mode 100644 index a85407e65..000000000 --- a/message/infrastructure/sql/topic_test.go +++ /dev/null @@ -1,29 +0,0 @@ -package sql_test - -import ( - "context" - "testing" - "time" - - "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/sql" - - "github.com/pkg/errors" - "github.com/stretchr/testify/assert" - "github.com/stretchr/testify/require" -) - -func TestValidateTopicName(t *testing.T) { - publisher, subscriber := newPubSub(t, newMySQL(t), "") - cleverlyNamedTopic := "some_topic; DROP DATABASE `watermill`" - - err := publisher.Publish(cleverlyNamedTopic, message.NewMessage("uuid", nil)) - require.Error(t, err) - assert.Equal(t, sql.ErrInvalidTopicName, errors.Cause(err)) - - ctx, cancel := context.WithTimeout(context.Background(), time.Second) - defer cancel() - _, err = subscriber.Subscribe(ctx, cleverlyNamedTopic) - require.Error(t, err) - assert.Equal(t, sql.ErrInvalidTopicName, errors.Cause(err)) -} diff --git a/message/infrastructure/test_pubsub.go b/message/infrastructure/test_pubsub.go index 59daf8997..54e8cedbd 100644 --- a/message/infrastructure/test_pubsub.go +++ b/message/infrastructure/test_pubsub.go @@ -46,8 +46,12 @@ func RunOnlyFastTests() bool { type Features struct { ConsumerGroups bool ExactlyOnceDelivery bool - GuaranteedOrder bool - Persistent bool + + GuaranteedOrder bool + // Some Pub/Subs guarantees order only when one subscriber is subscribing. + GuaranteedOrderWithSingleSubscriber bool + + Persistent bool RestartServiceCommand []string @@ -280,7 +284,12 @@ func TestPublishSubscribeInOrder(t *testing.T, pubSubConstructor PubSubConstruct if features.RequireSingleInstance { sub = initSub } else { - sub = createMultipliedSubscriber(t, pubSubConstructor, 10) + subscribersCount := 10 + if features.GuaranteedOrderWithSingleSubscriber { + subscribersCount = 1 + } + + sub = createMultipliedSubscriber(t, pubSubConstructor, subscribersCount) defer require.NoError(t, sub.Close()) } diff --git a/tools/mill/cmd/amqp.go b/tools/mill/cmd/amqp.go index 4f8bd715b..03a042625 100644 --- a/tools/mill/cmd/amqp.go +++ b/tools/mill/cmd/amqp.go @@ -1,7 +1,7 @@ package cmd import ( - "github.com/ThreeDotsLabs/watermill/message/infrastructure/amqp" + "github.com/ThreeDotsLabs/watermill-amqp/pkg/amqp" "github.com/spf13/cobra" "github.com/spf13/viper" ) diff --git a/tools/mill/cmd/consume.go b/tools/mill/cmd/consume.go index 89bc7dd55..6ec3dc0fd 100644 --- a/tools/mill/cmd/consume.go +++ b/tools/mill/cmd/consume.go @@ -9,8 +9,8 @@ import ( "github.com/spf13/cobra" "github.com/spf13/viper" + "github.com/ThreeDotsLabs/watermill-io/pkg/io" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/io" "github.com/ThreeDotsLabs/watermill/message/router/plugin" ) diff --git a/tools/mill/cmd/googlecloud.go b/tools/mill/cmd/googlecloud.go index b50106912..541024c67 100644 --- a/tools/mill/cmd/googlecloud.go +++ b/tools/mill/cmd/googlecloud.go @@ -12,7 +12,7 @@ import ( "github.com/spf13/viper" "github.com/ThreeDotsLabs/watermill" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/googlecloud" + "github.com/ThreeDotsLabs/watermill-googlecloud/pkg/googlecloud" ) var googleCloudTempSubscriptionID string diff --git a/tools/mill/cmd/kafka.go b/tools/mill/cmd/kafka.go index 4989fcc9c..89db9b994 100644 --- a/tools/mill/cmd/kafka.go +++ b/tools/mill/cmd/kafka.go @@ -4,7 +4,7 @@ import ( "github.com/Shopify/sarama" "github.com/spf13/viper" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/kafka" + "github.com/ThreeDotsLabs/watermill-kafka/pkg/kafka" "github.com/spf13/cobra" ) diff --git a/tools/mill/cmd/produce.go b/tools/mill/cmd/produce.go index 1521838e6..77bc9483b 100644 --- a/tools/mill/cmd/produce.go +++ b/tools/mill/cmd/produce.go @@ -9,8 +9,8 @@ import ( "github.com/spf13/cobra" "github.com/spf13/viper" + "github.com/ThreeDotsLabs/watermill-io/pkg/io" "github.com/ThreeDotsLabs/watermill/message" - "github.com/ThreeDotsLabs/watermill/message/infrastructure/io" "github.com/ThreeDotsLabs/watermill/message/router/plugin" ) diff --git a/tools/mill/go.mod b/tools/mill/go.mod index 128cfaeb7..48ca3d79e 100644 --- a/tools/mill/go.mod +++ b/tools/mill/go.mod @@ -1,22 +1,21 @@ module github.com/ThreeDotsLabs/watermill/tools/mill require ( - cloud.google.com/go v0.39.0 - github.com/DataDog/zstd v1.4.0 // indirect + cloud.google.com/go v0.38.0 github.com/Shopify/sarama v1.22.1 - github.com/ThreeDotsLabs/watermill v0.4.1-0.20190622135636-f82eaeea68ee - github.com/inconshreveable/mousetrap v1.0.0 // indirect - github.com/kr/pretty v0.1.0 // indirect - github.com/kr/pty v1.1.3 // indirect + github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b + github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 + github.com/ThreeDotsLabs/watermill-googlecloud v0.0.0-20190623204145-a5fb8c7d4a48 + github.com/ThreeDotsLabs/watermill-io v0.0.0-20190623204148-71d2243ef0c0 + github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 + github.com/cenkalti/backoff v2.2.0+incompatible // indirect + github.com/go-logfmt/logfmt v0.4.0 // indirect github.com/mitchellh/go-homedir v1.1.0 - github.com/pierrec/lz4 v2.0.5+incompatible // indirect github.com/pkg/errors v0.8.1 - github.com/spf13/cobra v0.0.3 + github.com/spf13/cobra v0.0.5 github.com/spf13/pflag v1.0.3 - github.com/spf13/viper v1.3.2 - golang.org/x/net v0.0.0-20190514140710-3ec191127204 // indirect - golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f // indirect - google.golang.org/genproto v0.0.0-20190513181449-d00d292a067c // indirect - gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect + github.com/spf13/viper v1.4.0 + golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect + golang.org/x/sys v0.0.0-20190621203818-d432491b9138 // indirect gopkg.in/yaml.v2 v2.2.2 ) diff --git a/tools/mill/go.sum b/tools/mill/go.sum index 12beb7f87..4da5d8ba8 100644 --- a/tools/mill/go.sum +++ b/tools/mill/go.sum @@ -1,121 +1,102 @@ cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.31.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw= -cloud.google.com/go v0.36.0/go.mod h1:RUoy9p/M4ge0HzT8L+SDZ8jg+Q6fth0CiBuhFJpSV40= +cloud.google.com/go v0.38.0 h1:ROfEUZz+Gh5pa62DJWXSaonyu3StP6EA6lPEXPI6mCo= cloud.google.com/go v0.38.0/go.mod h1:990N+gfupTy94rShfmMCWGDn0LpTmnzTp2qbd1dvSRU= -cloud.google.com/go v0.39.0 h1:UgQP9na6OTfp4dsAiz/eFpFA1C6tPdH5wiRdi19tuMw= -cloud.google.com/go v0.39.0/go.mod h1:rVLT6fkc8chs9sfPtFc1SBH6em7n+ZoXaG+87tDISts= -dmitri.shuralyov.com/app/changes v0.0.0-20180602232624-0a106ad413e3/go.mod h1:Yl+fi1br7+Rr3LqpNJf1/uxUdtRUV+Tnj0o93V2B9MU= -dmitri.shuralyov.com/html/belt v0.0.0-20180602232347-f7d459c86be0/go.mod h1:JLBrvjyP0v+ecvNYvCpyZgu5/xkfAUhi6wJj28eUfSU= -dmitri.shuralyov.com/service/change v0.0.0-20181023043359-a85b471d5412/go.mod h1:a1inKt/atXimZ4Mv927x+r7UpyzRUf4emIoiiSC2TN4= -dmitri.shuralyov.com/state v0.0.0-20180228185332-28bcc343414c/go.mod h1:0PRwlb0D6DFvNNtx+9ybjezNCa8XF0xaYcETyp6rHWU= -git.apache.org/thrift.git v0.0.0-20180902110319-2566ecd5d999/go.mod h1:fPE2ZNJGynbRyZ4dJvy6G277gSllfV2HJqblrnkyeyg= github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ= github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU= -github.com/DataDog/datadog-go v2.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ= -github.com/DataDog/zstd v1.3.5/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= +github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798 h1:2T/jmrHeTezcCM58lvEQXs0UpQJCo5SoGAcg+mbSTIg= github.com/DataDog/zstd v1.3.6-0.20190409195224-796139022798/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/DataDog/zstd v1.4.0 h1:vhoV+DUHnRZdKW1i5UMjAk2G4JY8wN4ayRfYDNdEhwo= -github.com/DataDog/zstd v1.4.0/go.mod h1:1jcaCB/ufaK+sKp1NBhlGmpz41jOoPQ35bpF36t7BBo= -github.com/Shopify/sarama v1.21.0/go.mod h1:yuqtN/pe8cXRWG5zPaO7hCfNJp5MwmkoJEoLjkm5tCQ= +github.com/OneOfOne/xxhash v1.2.2/go.mod h1:HSdplMjZKSmBqAxg5vPj2TmRDmfkzw+cTzAElWljhcU= github.com/Shopify/sarama v1.22.1 h1:exyEsKLGyCsDiqpV5Lr4slFi8ev2KiM3cP1KZ6vnCQ0= github.com/Shopify/sarama v1.22.1/go.mod h1:FRzlvRpMFO/639zY1SDxUxkqH97Y0ndM5CbGj6oG3As= github.com/Shopify/toxiproxy v2.1.4+incompatible h1:TKdv8HiTLgE5wdJuEML90aBgNWsokNbMijUGhmcoBJc= github.com/Shopify/toxiproxy v2.1.4+incompatible/go.mod h1:OXgGpZ6Cli1/URJOF1DMxUHB2q5Ap20/P/eIdh4G0pI= -github.com/ThreeDotsLabs/watermill v0.4.0-rc.3/go.mod h1:5Q9rjvwDhlztm+OUEwMR0Cfnq3f6lmHA9ZWSLDY/bRw= -github.com/ThreeDotsLabs/watermill v0.4.0 h1:ubX6vykSS3AMk6B8zih+midCLoP8X8gXMV/ru3mY4+w= -github.com/ThreeDotsLabs/watermill v0.4.0/go.mod h1:7ihSenzQBkBlc3Zpmk6XjR25l4D1Sq2+/baElI6VaHI= -github.com/ThreeDotsLabs/watermill v0.4.1-0.20190622135636-f82eaeea68ee h1:X7457T5iDVcyonoYWJ+k7V1RGf3cGLz/ai29SsgrJTI= -github.com/ThreeDotsLabs/watermill v0.4.1-0.20190622135636-f82eaeea68ee/go.mod h1:+tyEaAfubnVYeYspHY9+Dc6yscxa5rNZsAuljyaN7PA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b h1:gx6eJbTX/uyAXauA8Y7F9nVP968u9ZZPrWjn2NlQJBA= +github.com/ThreeDotsLabs/watermill v0.4.1-0.20190623184805-b9ecbe61b15b/go.mod h1:IbjfmBoVMM7g3GsPjEgM1N3cS+ifuzUjnedfb18RR5E= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25 h1:kP2LSLaxa0lAfnKbLFImmv2q93v++wt6S4/mOoBWABE= +github.com/ThreeDotsLabs/watermill-amqp v0.0.0-20190623204140-8c47c882dc25/go.mod h1:oQQihB/EEkroQWalJCTrdpquz4bxQEP58VfuTR/fMiQ= +github.com/ThreeDotsLabs/watermill-googlecloud v0.0.0-20190623204145-a5fb8c7d4a48 h1:xxA5eN7knd5/YAUYifUR3TcJpscyvWcQE8YZOiCOPQ4= +github.com/ThreeDotsLabs/watermill-googlecloud v0.0.0-20190623204145-a5fb8c7d4a48/go.mod h1:soxbTw5OkGhVVNX2ykaw16sfaXhihtTAYH4Z7leyTSw= +github.com/ThreeDotsLabs/watermill-io v0.0.0-20190623204148-71d2243ef0c0 h1:O3iI7pYo8HnmsF0pN/q3SkObmgqGzgV7jDDAm7FYvOI= +github.com/ThreeDotsLabs/watermill-io v0.0.0-20190623204148-71d2243ef0c0/go.mod h1:wNj4+yK3k1ZXhrAiLLRMKS9Fcx/uFEysMHw2dZjqmDo= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1 h1:WhQNFFQmeQKh+U76tsyeNvMLEcBjjrocqwkmVdWdLR0= +github.com/ThreeDotsLabs/watermill-kafka v0.0.0-20190623204152-bf39099364d1/go.mod h1:1HPqWOvd6FtshfQ51N5x3TU2YxhweWUacCdwJoTAS1w= github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc= github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0= -github.com/anmitsu/go-shlex v0.0.0-20161002113705-648efa622239/go.mod h1:2FmKhYUyUczH0OGQWaF5ceTx0UBShxjsH6f8oGKYe2c= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878/go.mod h1:3AMJUQhVx52RsWOnlkpikZr01T/yAVN2gn0861vByNg= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= github.com/beorn7/perks v1.0.0/go.mod h1:KWe93zE9D1o94FZ5RNwFwVgaQK1VOXiVxmqh+CedLV8= -github.com/bradfitz/go-smtpd v0.0.0-20170404230938-deb6d6237625/go.mod h1:HYsPBTaaSFSlLx/70C2HPIMNZpVV8+vt/A+FMnYP11g= github.com/cenkalti/backoff v2.1.1+incompatible h1:tKJnvO2kl0zmb/jA5UKAt4VoEVw1qxKWjE/Bpp46npY= github.com/cenkalti/backoff v2.1.1+incompatible/go.mod h1:90ReRw6GdpyfrHakVjL/QHaoyV4aDUVVkXQJJJ3NXXM= github.com/cenkalti/backoff v2.2.0+incompatible h1:8qVbEY6GLhoLlLi1Ac2ZkVhedNwlhQXc39qivKp9+GI= github.com/cenkalti/backoff v2.2.0+incompatible/go.mod h1:b6Nc7NRH5C4aCISLry0tLnTjcuTEvoiqcWDdsU0sOGM= -github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag= -github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I= +github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc= github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw= +github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/coreos/go-systemd v0.0.0-20181012123002-c6f51f82210d/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e/go.mod h1:F5haX7vjVVG0kc13fIWeqUViNPyEJxv/OmvnBo0Yme4= +github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA= +github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= -github.com/dustin/go-humanize v1.0.0/go.mod h1:HtrtbFcZ19U5GC7JDqmcUSB87Iq5E25KnS6fMYU6eOk= +github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ= +github.com/dgryski/go-sip13 v0.0.0-20181026042036-e10d5fee7954/go.mod h1:vAd38F8PWV+bWy6jNmig1y/TA+kYO4g3RSRF0IAv0no= github.com/eapache/go-resiliency v1.1.0 h1:1NtRmCAqadE2FN4ZcN6g90TP3uk8cg9rn9eNK2197aU= github.com/eapache/go-resiliency v1.1.0/go.mod h1:kFI+JgMyC7bLPUVY133qvEBtVayf5mFgVsvEsIPBvNs= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 h1:YEetp8/yCZMuEPMUDHG0CW/brkkEp8mzqk2+ODEitlw= github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21/go.mod h1:+020luEh2TKB4/GOp8oxxtq0Daoen/Cii55CzbTV6DU= github.com/eapache/queue v1.1.0 h1:YOEu7KNc61ntiQlcEeUIoDTJ2o8mQznoNvUhiigpIqc= github.com/eapache/queue v1.1.0/go.mod h1:6eCeP0CKFpHLu8blIFXhExK/dRa7WDZfr6jVFPTqq+I= -github.com/flynn/go-shlex v0.0.0-20150515145356-3f9db97f8568/go.mod h1:xEzjJPgXI435gkrCt3MPfRiAkVrwSbHsst4LCFVfpJc= github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04= -github.com/gliderlabs/ssh v0.1.1/go.mod h1:U7qILu1NlMHj9FlMhZLlkCdDnU1DBEAqr0aevW3Awn0= github.com/go-chi/chi v4.0.2+incompatible/go.mod h1:eB3wogJHnLi3x/kFX2A+IbTBlXxmMeXJVKy9tTv1XzQ= github.com/go-kit/kit v0.8.0/go.mod h1:xBxKIO96dXMWWy0MnWVtmwkA9/13aqxPnvrjFYMA2as= github.com/go-logfmt/logfmt v0.3.0/go.mod h1:Qt1PoO58o5twSAckw1HlFXLmHsOX5/0LbT9GBnD5lWE= -github.com/go-sql-driver/mysql v1.4.1/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w= +github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V4qmtdjCk= github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY= github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ= github.com/gogo/protobuf v1.2.1/go.mod h1:hp+jE20tsWTFYpLwKvXlhS1hjn+gTNwPg2I6zVXpSg4= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58= github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q= -github.com/golang/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:tluoj9z5200jBnyusfRPU2LqT6J+DAorxEvtC7LHB+E= +github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc= github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A= github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/protobuf v1.2.1-0.20190205222052-c823c79ea157/go.mod h1:Qd/q+1AKNOZr9uGQzbzCmRO6sUih6GTPZv6a1/R87v0= github.com/golang/protobuf v1.3.1 h1:YF8+flBXS5eO826T4nzqPrxfhQThhXl0YzfuUPu4SBg= github.com/golang/protobuf v1.3.1/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= -github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= +github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ= github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M= github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY= github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU= -github.com/google/go-github v17.0.0+incompatible/go.mod h1:zLgOLi98H3fifZn+44m+umXrS52loVEgC2AApnigrVQ= -github.com/google/go-querystring v1.0.0/go.mod h1:odCYkC5MyYFN7vkCjXpyrEuKhc/BUO6wN/zVPAxq5ck= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY= github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/googleapis/gax-go v2.0.0+incompatible/go.mod h1:SFVmujtThgffbyetf+mdk2eWhX2bMyUtNHzFKcPA9HY= -github.com/googleapis/gax-go/v2 v2.0.3/go.mod h1:LLvjysVCY1JZeum8Z6l8qUty8fiNwE08qbEPm1M08qg= github.com/googleapis/gax-go/v2 v2.0.4 h1:hU4mGcQI4DaAYW+IbTun+2qEZVFxK0ySjQLTbS0VQKc= github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= -github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= -github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA= -github.com/grpc-ecosystem/grpc-gateway v1.5.0/go.mod h1:RSKVYQBd5MCa4OVpNdGskqpgL2+G+NZTnrVHpWWfpdw= +github.com/gorilla/websocket v1.4.0/go.mod h1:E7qHFY5m1UJ88s3WnNqhKjPHQ0heANvMoAMk2YaljkQ= +github.com/grpc-ecosystem/go-grpc-middleware v1.0.0/go.mod h1:FiyG127CGDf3tlThmgyCl78X/SZQqEOJBCDaAfeWzPs= +github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0/go.mod h1:8NvIoxWQoOIhqOTXgfV/d3M/q6VIi02HzZEHgUlZvzk= +github.com/grpc-ecosystem/grpc-gateway v1.9.0/go.mod h1:vNeuVxBJEsws4ogUvrchl83t/GYV9WGTSLVdBhOQFDY= github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA= github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4= -github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80= -github.com/hashicorp/go-hclog v0.9.1/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ= -github.com/hashicorp/go-immutable-radix v1.0.0/go.mod h1:0y9vanUI8NX6FsYoO3zeMjhV/C5i9g4Q3DwcSNZ4P60= -github.com/hashicorp/go-msgpack v0.5.5/go.mod h1:ahLV/dePpqEmjfWmKiqvPkv/twdG7iPBM1vqhUKIvfM= github.com/hashicorp/go-multierror v1.0.0 h1:iVjPR7a6H0tWELX5NxNe7bYopibicUzc7uPribsnS6o= github.com/hashicorp/go-multierror v1.0.0/go.mod h1:dHtQlpGsu+cZNNAkkCN/P3hoUDHhCYQXV3UM06sGGrk= -github.com/hashicorp/go-retryablehttp v0.5.3/go.mod h1:9B5zBasrRhHXnJnui7y6sL7es7NDiJgTc6Er0maI1Xs= -github.com/hashicorp/go-uuid v1.0.0/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro= github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU= github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8= github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4= github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ= -github.com/hashicorp/raft v1.1.0/go.mod h1:4Ak7FSPnuvmb0GV6vgIAJ4vYT4bek9bb6Q+7HVbyzqM= github.com/inconshreveable/mousetrap v1.0.0 h1:Z8tu5sraLXCXIcARxBp/8cbvlwVa7Z1NHg9XEKhtSvM= github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8= -github.com/jellevandenhooff/dkim v0.0.0-20150330215556-f50fe3d243e1/go.mod h1:E0B/fFc00Y+Rasa88328GlI/XbtyysCtTHZS8h7IrBU= +github.com/jonboulle/clockwork v0.1.0/go.mod h1:Ii8DK3G1RaLaWxj9trq07+26W01tbo22gdxWY5EU2bo= github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU= github.com/jstemmer/go-junit-report v0.0.0-20190106144839-af01ea7f8024/go.mod h1:6v2b51hI/fHJwM22ozAgKL4VKDeJcHhJFhtBdhmNjmU= github.com/julienschmidt/httprouter v1.2.0/go.mod h1:SYymIcj16QtmaHHD7aYtjjsJG7VTCxuUUipMqKk8s4w= @@ -126,14 +107,11 @@ github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFB github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= -github.com/kr/pty v1.1.3/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE= github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI= -github.com/lib/pq v1.1.1/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo= github.com/magiconair/properties v1.8.0 h1:LLgXmsheXeRoUOBOjtwPQCWIYqM/LU1ayDtDePerRcY= github.com/magiconair/properties v1.8.0/go.mod h1:PppfXfuXeibc/6YijjN8zIbojt8czPbwD3XqdrwzmxQ= github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0= -github.com/microcosm-cc/bluemonday v1.0.1/go.mod h1:hsXNsILzKxV+sX77C5b8FSuKF00vh2OMYv+xgHpAMF4= github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= github.com/mitchellh/mapstructure v1.1.2 h1:fmNYVwqnSfB9mZU6OS2O6GsXM+wcskZDuKQzvN1EDeE= @@ -141,93 +119,52 @@ github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0= github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U= -github.com/nats-io/go-nats v1.7.2/go.mod h1:+t7RHT5ApZebkrQdnn6AhQJmhJJiKAvJUio1PiiCtj0= -github.com/nats-io/go-nats-streaming v0.4.0/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/go-nats-streaming v0.4.4/go.mod h1:gfq4R3c9sKAINOpelo0gn/b9QDMBZnmrttcsNF+lqyo= -github.com/nats-io/jwt v0.2.6/go.mod h1:mQxQ0uHQ9FhEVPIcTSKwx2lqZEpXWWcCgA7R6NrWvvY= -github.com/nats-io/nats-server/v2 v2.0.0/go.mod h1:RyVdsHHvY4B6c9pWG+uRLpZ0h0XsqiuKp2XCTurP5LI= -github.com/nats-io/nats-streaming-server v0.15.1/go.mod h1:bJ1+2CS8MqvkGfr/NwnCF+Lw6aLnL3F5kenM8bZmdCw= -github.com/nats-io/nats.go v1.8.1/go.mod h1:BrFz9vVn0fU3AcH9Vn4Kd7W0NpJ651tD5omQ3M8LwxM= -github.com/nats-io/nkeys v0.0.2/go.mod h1:dab7URMsZm6Z/jp9Z5UGa87Uutgc2mVpXLC4B7TDb/4= -github.com/nats-io/nuid v1.0.0/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/nats-io/nuid v1.0.1/go.mod h1:19wcPz3Ph3q0Jbyiqsd0kePYG7A95tJPxeL+1OSON2c= -github.com/nats-io/stan.go v0.4.5/go.mod h1:Ji7mK6gRZJSH1nc3ZJH6vi7zn/QnZhpR9Arm4iuzsUQ= -github.com/nats-io/stan.go v0.5.0/go.mod h1:dYqB+vMN3C2F9pT1FRQpg9eHbjPj6mP0yYuyBNuXHZE= -github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86/go.mod h1:kHJEU3ofeGjhHklVoIGuVj85JJwZ6kWPaJwCIxgnFmo= -github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab/go.mod h1:Qr6/a/Q4r9LP1IltGz7tA7iOK1WonHEYhu1HRBA7ZiM= github.com/oklog/ulid v1.3.1 h1:EGfNDEx6MqHz8B3uNV6QAib1UR2Lm97sHi3ocA6ESJ4= github.com/oklog/ulid v1.3.1/go.mod h1:CirwcVhetQ6Lv90oh/F+FBtV6XMibvdAFo93nm5qn4U= -github.com/openzipkin/zipkin-go v0.1.1/go.mod h1:NtoC/o8u3JlF1lSlyPNswIbeQH9bJTmOf0Erfk+hxe8= -github.com/pascaldekloe/goe v0.1.0/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc= github.com/pelletier/go-toml v1.2.0 h1:T5zMGML61Wp+FlcbWjRDT7yAxhJNAiPPLOFECq181zc= github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41 h1:GeinFsrjWz97fAxVUEd748aV0cYL+I6k44gFJTCVvpU= github.com/pierrec/lz4 v0.0.0-20190327172049-315a67e90e41/go.mod h1:3/3N9NVKO0jef7pBehbT1qWhCMrIgbYNnFAZCqQ5LRc= -github.com/pierrec/lz4 v2.0.5+incompatible h1:2xWsjqPFWcplujydGg4WmhC/6fZqK42wMM8aXeqhl0I= -github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY= github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/errors v0.8.1 h1:iURUrRGxPUNPdy5/HRSm+Yj6okJ6UtLINN0Q9M4+h3I= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pkg/profile v1.2.1/go.mod h1:hJw3o1OdXxsrSjjVksARp5W95eeEaEfptyVZyv6JUPA= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= -github.com/prometheus/client_golang v0.8.0/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw= -github.com/prometheus/client_golang v0.9.2/go.mod h1:OsXs2jCmiKlQ1lTBmv21f2mNfw4xf/QclQDMrYNZzcM= -github.com/prometheus/client_golang v0.9.4/go.mod h1:oCXIBxdI62A4cR6aTRJCgetEjecSIYzOEaeAn4iYEpM= +github.com/prometheus/client_golang v0.9.3/go.mod h1:/TN21ttK/J9q6uSwhBd54HahCDft0ttaMvbicHlPoso= +github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo= github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo= github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA= -github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= -github.com/prometheus/common v0.0.0-20181126121408-4724e9255275/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.0.0-20181113130724-41aa239b4cce/go.mod h1:daVV7qP5qjZbuso7PdcryaAu0sAZbrN9i7WWcTMWvro= +github.com/prometheus/common v0.4.0/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4= -github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= -github.com/prometheus/procfs v0.0.0-20181204211112-1dc9a6cbc91a/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk= +github.com/prometheus/procfs v0.0.0-20190507164030-5867b95ac084/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA= +github.com/prometheus/tsdb v0.7.1/go.mod h1:qhTCs0VvXwvX/y3TZrWD7rabWM+ijKTux40TwIPHuXU= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a h1:9ZKAASQSHhDYGoxY8uLVpewe1GDZ2vu2Tr/vTdVAkFQ= github.com/rcrowley/go-metrics v0.0.0-20181016184325-3113b8401b8a/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/renstrom/shortuuid v3.0.0+incompatible h1:F6T1U7bWlI3FTV+JE8HyeR7bkTeYZJntqQLA9ST4HOQ= github.com/renstrom/shortuuid v3.0.0+incompatible/go.mod h1:n18Ycpn8DijG+h/lLBQVnGKv1BCtTeXo8KKSbBOrQ8c= +github.com/rogpeppe/fastuuid v0.0.0-20150106093220-6724a57986af/go.mod h1:XWv6SoW27p1b0cqNHllgS5HIMJraePCO15w5zCzIWYg= github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g= -github.com/sergi/go-diff v1.0.0/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo= -github.com/shurcooL/component v0.0.0-20170202220835-f88ec8f54cc4/go.mod h1:XhFIlyj5a1fBNx5aJTbKoIq0mNaPvOagO+HjB3EtxrY= -github.com/shurcooL/events v0.0.0-20181021180414-410e4ca65f48/go.mod h1:5u70Mqkb5O5cxEA8nxTsgrgLehJeAw6Oc4Ab1c/P1HM= -github.com/shurcooL/github_flavored_markdown v0.0.0-20181002035957-2122de532470/go.mod h1:2dOwnU2uBioM+SGy2aZoq1f/Sd1l9OkAeAUvjSyvgU0= -github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e/go.mod h1:TDJrrUr11Vxrven61rcy3hJMUqaf/CLWYhHNPmT14Lk= -github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041/go.mod h1:N5mDOmsrJOB+vfqUK+7DmDyjhSLIIBnXo9lvZJj3MWQ= -github.com/shurcooL/gofontwoff v0.0.0-20180329035133-29b52fc0a18d/go.mod h1:05UtEgK5zq39gLST6uB0cf3NEHjETfB4Fgr3Gx5R9Vw= -github.com/shurcooL/gopherjslib v0.0.0-20160914041154-feb6d3990c2c/go.mod h1:8d3azKNyqcHP1GaQE/c6dDgjkgSx2BZ4IoEi4F1reUI= -github.com/shurcooL/highlight_diff v0.0.0-20170515013008-09bb4053de1b/go.mod h1:ZpfEhSmds4ytuByIcDnOLkTHGUI6KNqRNPDLHDk+mUU= -github.com/shurcooL/highlight_go v0.0.0-20181028180052-98c3abbbae20/go.mod h1:UDKB5a1T23gOMUJrI+uSuH0VRDStOiUVSjBTRDVBVag= -github.com/shurcooL/home v0.0.0-20181020052607-80b7ffcb30f9/go.mod h1:+rgNQw2P9ARFAs37qieuu7ohDNQ3gds9msbT2yn85sg= -github.com/shurcooL/htmlg v0.0.0-20170918183704-d01228ac9e50/go.mod h1:zPn1wHpTIePGnXSHpsVPWEktKXHr6+SS6x/IKRb7cpw= -github.com/shurcooL/httperror v0.0.0-20170206035902-86b7830d14cc/go.mod h1:aYMfkZ6DWSJPJ6c4Wwz3QtW22G7mf/PEgaB9k/ik5+Y= -github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371/go.mod h1:ZY1cvUeJuFPAdZ/B6v7RHavJWZn2YPVFQ1OSXhCGOkg= -github.com/shurcooL/httpgzip v0.0.0-20180522190206-b1c53ac65af9/go.mod h1:919LwcH0M7/W4fcZ0/jy0qGght1GIhqyS/EgWGH2j5Q= -github.com/shurcooL/issues v0.0.0-20181008053335-6292fdc1e191/go.mod h1:e2qWDig5bLteJ4fwvDAc2NHzqFEthkqn7aOZAOpj+PQ= -github.com/shurcooL/issuesapp v0.0.0-20180602232740-048589ce2241/go.mod h1:NPpHK2TI7iSaM0buivtFUc9offApnI0Alt/K8hcHy0I= -github.com/shurcooL/notifications v0.0.0-20181007000457-627ab5aea122/go.mod h1:b5uSkrEVM1jQUspwbixRBhaIjIzL2xazXp6kntxYle0= -github.com/shurcooL/octicon v0.0.0-20181028054416-fa4f57f9efb2/go.mod h1:eWdoE5JD4R5UVWDucdOPg1g2fqQRq78IQa9zlOV1vpQ= -github.com/shurcooL/reactions v0.0.0-20181006231557-f2e0b4ca5b82/go.mod h1:TCR1lToEk4d2s07G3XGfz2QrgHXg4RJBvjrOozvoWfk= -github.com/shurcooL/sanitized_anchor_name v0.0.0-20170918181015-86672fcb3f95/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc= -github.com/shurcooL/users v0.0.0-20180125191416-49c67e49c537/go.mod h1:QJTqeLYEDaXHZDBsXlPCDqdhQuJkuw4NOtaxYe3xii4= -github.com/shurcooL/webdavfs v0.0.0-20170829043945-18c3829fa133/go.mod h1:hKmq5kWdCj2z2KEozexVbfEZIWiTjhE0+UjmZgPqehw= github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo= -github.com/sourcegraph/annotate v0.0.0-20160123013949-f4cad6c6324d/go.mod h1:UdhH50NIW0fCiwBSr0co2m7BnFLdv4fQTgdqdJTHFeE= -github.com/sourcegraph/syntaxhighlight v0.0.0-20170531221838-bd320f5d308e/go.mod h1:HuIsMU8RRBOtsCgI77wP899iHVBQpCmg4ErYMZB+2IA= +github.com/soheilhy/cmux v0.1.4/go.mod h1:IM3LyeVVIOuxMH7sFAkER9+bJ4dT7Ms6E4xg4kGIyLM= +github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72/go.mod h1:JwIasOWyU6f++ZhiEuf87xNszmSA2myDM2Kzu9HwQUA= github.com/spf13/afero v1.1.2 h1:m8/z1t7/fwjysjQRYbP0RD+bUIF/8tJwPdEZsI83ACI= github.com/spf13/afero v1.1.2/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/cast v1.3.0 h1:oget//CVOEoFewqQxwr0Ej5yjygnqGkvggSE/gB35Q8= github.com/spf13/cast v1.3.0/go.mod h1:Qx5cxh0v+4UWYiBimWS+eyWzqEqokIECu5etghLkUJE= -github.com/spf13/cobra v0.0.3 h1:ZlrZ4XsMRm04Fr5pSFxBgfND2EBVa1nLpiy1stUsX/8= -github.com/spf13/cobra v0.0.3/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= +github.com/spf13/cobra v0.0.5 h1:f0B+LkLX6DtmRH1isoNA9VTtNUK9K8xYd28JNNfOv/s= +github.com/spf13/cobra v0.0.5/go.mod h1:3K3wKZymM7VvHMDS9+Akkh4K60UwM26emMESw8tLCHU= github.com/spf13/jwalterweatherman v1.0.0 h1:XHEdyB+EcvlqZamSM4ZOMGlc93t6AcsBEu9Gc1vn7yk= github.com/spf13/jwalterweatherman v1.0.0/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg= github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4= -github.com/spf13/viper v1.3.2 h1:VUFqw5KcqRf7i70GOzW7N+Q7+gxVBkSSqiXB12+JQ4M= github.com/spf13/viper v1.3.2/go.mod h1:ZiWeW+zYFKm7srdB9IoDzzZXaJaI5eL9QjNiN/DMA2s= -github.com/streadway/amqp v0.0.0-20190225234609-30f8ed68076e/go.mod h1:1WNBiOZtZQLpVAyu0iTduoJL9hEsMloAK5XWrtW0xdY= +github.com/spf13/viper v1.4.0 h1:yXHLWeravcrgGyFSyCgdYpXQ9dR9c/WED3pg1RhxqEU= +github.com/spf13/viper v1.4.0/go.mod h1:PTJ7Z/lr49W6bUbkmS1V3by4uWynFiR9p7+dSq/yZzE= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94 h1:0ngsPmuP6XIjiFRNFYlvKwSr5zff2v+uPHaffZ6/M4k= github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw= github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= @@ -235,26 +172,24 @@ github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+ github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs= github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= -github.com/tarm/serial v0.0.0-20180830185346-98f6abe2eb07/go.mod h1:kDXzergiv9cbyO7IOYJZWg1U88JhDg3PB6klq9Hg2pA= -github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM= +github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5/go.mod h1:ncp9v5uamzpCO7NfCPTXjqaC+bZgJeR0sMTm6dMHP7U= +github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc= github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8/go.mod h1:VFNgLljTbGfSG7qAOspJ7OScBnGdDN/yBr0sguwnwf0= github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I= github.com/xdg/stringprep v1.0.0/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y= +github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU= github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q= go.etcd.io/bbolt v1.3.2/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= -go.opencensus.io v0.18.0/go.mod h1:vKdFvxhtzZ9onBp9VKHK8z/sRpBMnKAsufL7wlDrCOA= go.opencensus.io v0.21.0 h1:mU6zScU4U1YAFPHEHYk+3JC4SY7JxgkqS10ZOSyksNg= go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU= -go4.org v0.0.0-20180809161055-417644f6feb5/go.mod h1:MkTOUMDaeVYJUOUsaDXIhWPZYa1yOyC1qaOBpL57BhE= -golang.org/x/build v0.0.0-20190111050920-041ab4dc3f9d/go.mod h1:OWs+y06UdEOHN4y+MfF/py+xQ/tYqIWW03b70/CG9Rw= +go.uber.org/atomic v1.4.0/go.mod h1:gD2HeocX3+yG+ygLZcrzQJaqmWj9AIm7n08wl/qW/PE= +go.uber.org/multierr v1.1.0/go.mod h1:wR5kodmAFQ0UK8QlbwjlSNy0Z68gJhDJUG5sjR94q/0= +go.uber.org/zap v1.10.0/go.mod h1:vwi/ZaCAaUcBkycHslxD9B2zi4UTXhF60s6SWpuDF0Q= golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= -golang.org/x/crypto v0.0.0-20181030102418-4d3f4d9ffa16/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190404164418-38d8ce5564a5/go.mod h1:WFFai1msRO1wXaEeE5yQxYXgSfI8pQAWXbQop6sCtWE= -golang.org/x/crypto v0.0.0-20190530122614-20be4c3c3ed5/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= -golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU= golang.org/x/lint v0.0.0-20190301231843-5614ed5bae6f/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE= @@ -262,27 +197,21 @@ golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHl golang.org/x/lint v0.0.0-20190409202823-959b441ac422/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181029044818-c44066c5c816/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181106065722-10aee1819953/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= -golang.org/x/net v0.0.0-20181201002055-351d144fa1fc/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/net v0.0.0-20181220203305-927f97764cc3/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= golang.org/x/net v0.0.0-20190503192946-f4e77d36d62c/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= -golang.org/x/net v0.0.0-20190514140710-3ec191127204 h1:4yG6GqBtw9C+UrLp6s2wtSniayy/Vd/3F7ffLE427XI= -golang.org/x/net v0.0.0-20190514140710-3ec191127204/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg= +golang.org/x/net v0.0.0-20190522155817-f3200d17e092 h1:4QSRKanuywn15aTZvI/mIDEgPQpswuFndXpOj3rKEco= +golang.org/x/net v0.0.0-20190522155817-f3200d17e092/go.mod h1:HSz+uSET+XFnRR8LxR5pz3Of3rY3CfYBVs4xY44aLks= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859 h1:R/3boaszxrf1GEUWTVDzSKVwLmSJpwZ1yqXm8j0v2QI= +golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20181017192945-9dcd33a902f4/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= -golang.org/x/oauth2 v0.0.0-20181203162652-d668ce993890/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a h1:tImsplftrFpALCYumobsd0K86vlAs/eXGFms2txfJfA= -golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 h1:SVwTIAaPC2U/AvvLNZ2a7OVsmBpC8L5BlwK1whH3hm0= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= -golang.org/x/perf v0.0.0-20180704124530-6e6d33e29852/go.mod h1:JLpeXjPJfIyPr5TlbXLkXWLhP8nz10XfvxElABhCtcw= golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -291,77 +220,54 @@ golang.org/x/sync v0.0.0-20190423024810-112230192c58 h1:8gQV6CLnAEikrhgkHFbMAEha golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= -golang.org/x/sys v0.0.0-20181029174526-d69651ed3497/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20181107165924-66b7b1311ac8/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181116152217-5ac8a444bdc5/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20181205085412-a5c9d58dba9a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20190403152447-81d4e9dc473e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190412213103-97732733099d/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b h1:ag/x1USPSsqHud38I9BAC88qdNLDHHtQ4mlgQIZPPNA= golang.org/x/sys v0.0.0-20190507160741-ecd444e8653b/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f h1:Xab8gg26GrI/x3RNdVhVkHHM1XLyGeRBEvz4Q5x4YW8= -golang.org/x/sys v0.0.0-20190514135907-3a4b5fb9f71f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138 h1:t8BZD9RDjkm9/h7yYN6kE8oaeov5r9aztkB7zKA5Tkg= +golang.org/x/sys v0.0.0-20190621203818-d432491b9138/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= -golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= +golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/tools v0.0.0-20180221164845-07fd8470d635/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= -golang.org/x/tools v0.0.0-20181030000716-a0a13e073c7b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY= golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190312170243-e65039ee4138/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs= golang.org/x/tools v0.0.0-20190506145303-2d16b83fe98c/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q= -google.golang.org/api v0.0.0-20180910000450-7ca32eb868bf/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= -google.golang.org/api v0.0.0-20181030000543-1d582fd0359e/go.mod h1:4mhQ8q/RsB7i+udVvVy5NUi08OU8ZlA0gRVgrF7VFY0= -google.golang.org/api v0.1.0/go.mod h1:UGEZY7KEX120AnNLIHFMKIo4obdJhkp2tPbaPlQx13Y= google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= -google.golang.org/api v0.5.0 h1:lj9SyhMzyoa38fgFF0oO2T6pjs5IzkLPKfVtxpyCRMM= -google.golang.org/api v0.5.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE= google.golang.org/api v0.6.0 h1:2tJEkRfnZL5g1GeBUlITh/rqT5HG3sFcoVCUUxmgJ2g= google.golang.org/api v0.6.0/go.mod h1:btoxGiFvQNVUZQ8W08zLtrVS08CNpINPEfxXxgJL1Q4= google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM= -google.golang.org/appengine v1.2.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.3.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= +google.golang.org/appengine v1.5.0 h1:KxkO13IPW4Lslp2bz+KHP2E3gtFlrIGNThxkZQ3g+4c= google.golang.org/appengine v1.5.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= -google.golang.org/appengine v1.6.0 h1:Tfd7cKwKbFRsI8RMAD3oqqw7JPFRrvFlOsfbgVkjOOw= -google.golang.org/appengine v1.6.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4= google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20180831171423-11092d34479b/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20181029155118-b69ba1387ce2/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc= -google.golang.org/genproto v0.0.0-20181202183823-bd91e49a0898/go.mod h1:7Ep/1NZk928CDR8SjdVbjWNpdIf6nzjE3BTgJDr2Atg= -google.golang.org/genproto v0.0.0-20190201180003-4b09977fb922/go.mod h1:L3J43x8/uS+qIUoksaLKe6OS3nUKxOKuIFz1sl2/jx4= google.golang.org/genproto v0.0.0-20190307195333-5fe7a883aa19/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= google.golang.org/genproto v0.0.0-20190418145605-e7d98fc518a7/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= +google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873 h1:nfPFGzJkUDX6uBmpN/pSw7MbOAWegH5QDQuoXFHedLg= google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190508193815-b515fa19cec8/go.mod h1:VzzqZJRnGkLBvHegQrXjBqPurQTc5/KpmUdxsrq26oE= -google.golang.org/genproto v0.0.0-20190513181449-d00d292a067c h1:m9avZ3wyOWBR0fLC+qWbMBulk+Jiiqelngssgp8jfIs= -google.golang.org/genproto v0.0.0-20190513181449-d00d292a067c/go.mod h1:z3L6/3dTEVtUr6QSP8miRzeRqwQOioJ9I66odjN4I7s= -google.golang.org/grpc v1.14.0/go.mod h1:yo6s7OP7yaDglbqo1J04qKzAhqBH6lvTonzMVmEdcZw= -google.golang.org/grpc v1.16.0/go.mod h1:0JHn/cJsOMiMfNA9+DeHDlAU7KAAB5GDlYFpa9MZMio= -google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs= google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c= -google.golang.org/grpc v1.20.1 h1:Hz2g2wirWK7H0qIIhGIqRGTuMwTE8HEKFnDZZ7lm9NU= google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38= +google.golang.org/grpc v1.21.0/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= google.golang.org/grpc v1.21.1 h1:j6XxA85m/6txkUCHvzlV5f+HBNl/1r5cZ2A/3IEFOO8= google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM= gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw= gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 h1:qIbj1fsPNlZgppZ+VLlY7N33q108Sa+fhmuc+sWQYwY= gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= -gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw= +gopkg.in/resty.v1 v1.12.0/go.mod h1:mDo4pnntr5jdWRML875a/NmxYqAlA73dVijT2AXvQQo= +gopkg.in/yaml.v2 v2.0.0-20170812160011-eb3733d160e7/go.mod h1:JAlM8MvJe8wmxCU4Bli9HhUf9+ttbYbLASfIpnQbh74= gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw= gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= -grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod h1:77eQGdRu53HpSqPFJFmuJdjuHRquDANNeA4x7B8WQ9o= -honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190418001031-e561f6794a2a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= -sourcegraph.com/sourcegraph/go-diff v0.5.0/go.mod h1:kuch7UrkMzY0X+p9CRK03kfuPQ2zzQcaEFbx8wA8rck= -sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0=