Skip to content

Commit 20f45ea

Browse files
author
Lior Nabat
committed
release v1.5.1
1 parent d0b8c79 commit 20f45ea

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

Taskfile.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: '3'
22
vars:
33
BINARY_NAME: kubemq-sources
4-
VERSION: v1.5.0
4+
VERSION: v1.5.1
55
tasks:
66
default:
77
cmds:

logs/kubemq-sources.log

+1
Original file line numberDiff line numberDiff line change
@@ -187690,3 +187690,4 @@ caused by: context canceled {"source": "s3.down"}
187690187690
2022-12-12T07:38:30.498+0200 INFO generated manifest.json completed {"source": "kubemq-sources"}
187691187691
2022-12-12T07:51:55.567+0200 INFO generated manifest.json completed {"source": "kubemq-sources"}
187692187692
2023-05-06T11:19:18.215+0300 INFO generated manifest.json completed {"source": "kubemq-sources"}
187693+
2023-05-06T20:09:25.139+0300 INFO generated manifest.json completed {"source": "kubemq-sources"}

targets/command/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ func (c *Client) Init(ctx context.Context, cfg config.Spec, bindingName string,
4545
}
4646
c.client, err = kubemq.NewClient(ctx,
4747
kubemq.WithAddress(c.opts.host, c.opts.port),
48-
kubemq.WithClientId(fmt.Sprintf("kubemq-sources/%s/%s", bindingName, c.opts.clientId)),
48+
kubemq.WithClientId(fmt.Sprintf("kubemq-sources_%s_%s", bindingName, c.opts.clientId)),
4949
kubemq.WithTransportType(kubemq.TransportTypeGRPC),
5050
kubemq.WithAuthToken(c.opts.authToken),
5151
// making sure that this stays false in order the http source will work correctly

targets/events-store/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func (c *Client) Init(ctx context.Context, cfg config.Spec, bindingName string,
4848

4949
c.client, err = kubemq.NewClient(ctx,
5050
kubemq.WithAddress(c.opts.host, c.opts.port),
51-
kubemq.WithClientId(fmt.Sprintf("kubemq-sources/%s/%s", bindingName, c.opts.clientId)),
51+
kubemq.WithClientId(fmt.Sprintf("kubemq-sources_%s_%s", bindingName, c.opts.clientId)),
5252
kubemq.WithTransportType(kubemq.TransportTypeGRPC),
5353
kubemq.WithAuthToken(c.opts.authToken),
5454
// making sure that this stays false in order the http source will work correctly

targets/events/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (c *Client) Init(ctx context.Context, cfg config.Spec, bindingName string,
5252

5353
c.client, err = kubemq.NewClient(ctx,
5454
kubemq.WithAddress(c.opts.host, c.opts.port),
55-
kubemq.WithClientId(fmt.Sprintf("kubemq-sources/%s/%s", bindingName, c.opts.clientId)),
55+
kubemq.WithClientId(fmt.Sprintf("kubemq-sources_%s_%s", bindingName, c.opts.clientId)),
5656
kubemq.WithTransportType(kubemq.TransportTypeGRPC),
5757
kubemq.WithAuthToken(c.opts.authToken),
5858
// making sure that this stays false in order the http source will work correctly

targets/query/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (c *Client) Init(ctx context.Context, cfg config.Spec, bindingName string,
3939
}
4040
c.client, err = kubemq.NewClient(ctx,
4141
kubemq.WithAddress(c.opts.host, c.opts.port),
42-
kubemq.WithClientId(fmt.Sprintf("kubemq-sources/%s/%s", bindingName, c.opts.clientId)),
42+
kubemq.WithClientId(fmt.Sprintf("kubemq-sources_%s_%s", bindingName, c.opts.clientId)),
4343
kubemq.WithTransportType(kubemq.TransportTypeGRPC),
4444
kubemq.WithAuthToken(c.opts.authToken),
4545
// making sure that this stays false in order the http source will work correctly

targets/queue/client.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ func (c *Client) Init(ctx context.Context, cfg config.Spec, bindingName string,
3939
}
4040
c.client, err = queues_stream.NewQueuesStreamClient(ctx,
4141
queues_stream.WithAddress(c.opts.host, c.opts.port),
42-
queues_stream.WithClientId(fmt.Sprintf("kubemq-sources/%s/%s", bindingName, c.opts.clientId)),
42+
queues_stream.WithClientId(fmt.Sprintf("kubemq-sources_%s_%s", bindingName, c.opts.clientId)),
4343
queues_stream.WithCheckConnection(true),
4444
queues_stream.WithAutoReconnect(true),
4545
queues_stream.WithAuthToken(c.opts.authToken),

0 commit comments

Comments
 (0)