Skip to content

Commit

Permalink
rename clients
Browse files Browse the repository at this point in the history
  • Loading branch information
travisjeffery committed Feb 18, 2017
1 parent 25f1554 commit cf9551c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/createtopic/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ func main() {

proxy := server.NewProxy(conn)

_, err = proxy.CreateTopic("dummyClientID", &protocol.CreateTopicRequest{
_, err = proxy.CreateTopic("cmd/createtopic", &protocol.CreateTopicRequest{
Topic: *topic,
NumPartitions: *partitions,
ReplicationFactor: int16(1),
Expand Down
2 changes: 1 addition & 1 deletion server/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ func setup(t *testing.T) (*net.TCPConn, func()) {

proxy := server.NewProxy(conn)

_, err = proxy.CreateTopic("dummyClientID", &protocol.CreateTopicRequest{
_, err = proxy.CreateTopic("testclient", &protocol.CreateTopicRequest{
Topic: topic,
NumPartitions: int32(1),
ReplicationFactor: int16(1),
Expand Down

0 comments on commit cf9551c

Please sign in to comment.