File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ export function createEncoder({
128
128
return new Encoder (
129
129
contentTopic ,
130
130
ephemeral ,
131
- pubsubTopicShardInfo ?. clusterId
131
+ pubsubTopicShardInfo
132
132
? singleShardInfoToPubsubTopic ( pubsubTopicShardInfo )
133
133
: DefaultPubsubTopic ,
134
134
metaSetter
@@ -193,7 +193,7 @@ export function createDecoder(
193
193
pubsubTopicShardInfo ?: SingleShardInfo
194
194
) : Decoder {
195
195
return new Decoder (
196
- pubsubTopicShardInfo ?. clusterId
196
+ pubsubTopicShardInfo
197
197
? singleShardInfoToPubsubTopic ( pubsubTopicShardInfo )
198
198
: DefaultPubsubTopic ,
199
199
contentTopic
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export function createEncoder({
107
107
metaSetter
108
108
} : EncoderOptions ) : Encoder {
109
109
return new Encoder (
110
- pubsubTopicShardInfo ?. clusterId
110
+ pubsubTopicShardInfo
111
111
? singleShardInfoToPubsubTopic ( pubsubTopicShardInfo )
112
112
: DefaultPubsubTopic ,
113
113
contentTopic ,
@@ -200,7 +200,7 @@ export function createDecoder(
200
200
pubsubTopicShardInfo ?: SingleShardInfo
201
201
) : Decoder {
202
202
return new Decoder (
203
- pubsubTopicShardInfo ?. clusterId
203
+ pubsubTopicShardInfo
204
204
? singleShardInfoToPubsubTopic ( pubsubTopicShardInfo )
205
205
: DefaultPubsubTopic ,
206
206
contentTopic ,
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export function createEncoder({
107
107
metaSetter
108
108
} : EncoderOptions ) : Encoder {
109
109
return new Encoder (
110
- pubsubTopicShardInfo ?. clusterId
110
+ pubsubTopicShardInfo
111
111
? singleShardInfoToPubsubTopic ( pubsubTopicShardInfo )
112
112
: DefaultPubsubTopic ,
113
113
contentTopic ,
@@ -200,7 +200,7 @@ export function createDecoder(
200
200
pubsubTopicShardInfo ?: SingleShardInfo
201
201
) : Decoder {
202
202
return new Decoder (
203
- pubsubTopicShardInfo ?. clusterId
203
+ pubsubTopicShardInfo
204
204
? singleShardInfoToPubsubTopic ( pubsubTopicShardInfo )
205
205
: DefaultPubsubTopic ,
206
206
contentTopic ,
You can’t perform that action at this time.
0 commit comments