Skip to content

Commit 012e450

Browse files
author
Kelsey
committed
Remove kakfa package and tests
1 parent 1d5554b commit 012e450

22 files changed

+1
-1836
lines changed

Dockercompose.test.yml

Lines changed: 0 additions & 83 deletions
This file was deleted.

Dockerfile.setup

Lines changed: 0 additions & 4 deletions
This file was deleted.

Dockerfile.test

Lines changed: 0 additions & 12 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,3 @@ deps:
1717

1818
test:
1919
go test -race $(gotags) ./...
20-
21-
integration-test:
22-
docker-compose -f Dockercompose.test.yml up --build --abort-on-container-exit --always-recreate-deps
23-
docker-compose -f Dockercompose.test.yml down --volumes
24-
25-
clean:
26-
docker-compose -f Dockercompose.test.yml rm -f
27-
28-
kafkacat:
29-
docker run -it --network=host confluentinc/cp-kafkacat kafkacat -b localhost:19092 -C -t gotest -J

README.md

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,3 @@ This is a core library that will add common features for our services.
77
> The ones that have their own right now will be migrated as needed
88
99
Mostly this deals with configuring logging, messaging (rabbit && nats), and loading configuration.
10-
11-
## Testing
12-
### Prerequisites
13-
14-
If running on Apple silicon, the `librdkafka` library will need to be linked dynamically. We may want to keep an eye on [issues](https://github.com/confluentinc/confluent-kafka-go/issues/696) in the `confluent-kakfa-go` repository for alternative approaches that we could use in the future.
15-
16-
```
17-
brew install openssl
18-
brew install librdkafka
19-
brew install pkg-config
20-
```
21-
22-
And add `PKG_CONFIG_PATH` to your `~/.bashrc` or `~/.zshrc` (as instructed by `brew info openssl`)
23-
```
24-
export PKG_CONFIG_PATH="/opt/homebrew/opt/openssl@3/lib/pkgconfig"
25-
```

go.mod

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ require (
1010
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
1111
github.com/bugsnag/bugsnag-go v1.5.3
1212
github.com/bugsnag/panicwrap v1.2.0 // indirect
13-
github.com/confluentinc/confluent-kafka-go v1.4.2
1413
github.com/dgrijalva/jwt-go v3.2.0+incompatible
1514
github.com/go-chi/chi v4.0.2+incompatible
1615
github.com/go-sql-driver/mysql v1.5.0 // indirect
@@ -51,7 +50,7 @@ require (
5150
gopkg.in/DataDog/dd-trace-go.v1 v1.31.1
5251
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
5352
gopkg.in/ghodss/yaml.v1 v1.0.0 // indirect
54-
gopkg.in/launchdarkly/go-sdk-common.v1 v1.0.0-20200401173443-991b2f427a01 // indirect
53+
gopkg.in/launchdarkly/go-sdk-common.v1 v1.0.0-20200401173443-991b2f427a01
5554
gopkg.in/launchdarkly/go-server-sdk.v4 v4.0.0-20200729232655-2a44fb361895
5655
gopkg.in/segmentio/analytics-go.v3 v3.1.0
5756
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1/go.mod h1:Q3SI9o4m/ZMn
5959
github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible/go.mod h1:nmEj6Dob7S7YxXgwXpfOuvO54S+tGdZdw9fuRZt25Ag=
6060
github.com/circonus-labs/circonusllhist v0.1.3/go.mod h1:kMXHVDlOchFAehlya5ePtbp5jckzBHf4XRpQvBOLI+I=
6161
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
62-
github.com/confluentinc/confluent-kafka-go v1.4.2 h1:13EK9RTujF7lVkvHQ5Hbu6bM+Yfrq8L0MkJNnjHSd4Q=
63-
github.com/confluentinc/confluent-kafka-go v1.4.2/go.mod h1:u2zNLny2xq+5rWeTQjFHbDzzNuba4P1vo31r9r4uAdg=
6462
github.com/coreos/bbolt v1.3.2/go.mod h1:iRUV2dpdMOn7Bo10OQBFzIJO9kkE559Wcmn+qkEiiKk=
6563
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
6664
github.com/coreos/etcd v3.3.13+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=

kafka/README.md

Lines changed: 0 additions & 13 deletions
This file was deleted.

kafka/config.go

Lines changed: 0 additions & 209 deletions
This file was deleted.

0 commit comments

Comments
 (0)