File tree 4 files changed +4
-1
lines changed
4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -528,6 +528,7 @@ var PubSubApiClient = class {
528
528
constructor ( logger = console ) {
529
529
this . #logger = logger ;
530
530
this . #schemaChache = /* @__PURE__ */ new Map ( ) ;
531
+ this . #topicCache = /* @__PURE__ */ new Map ( ) ;
531
532
try {
532
533
Configuration . load ( ) ;
533
534
} catch ( error ) {
Original file line number Diff line number Diff line change
Original file line number Diff line number Diff line change @@ -495,6 +495,7 @@ var PubSubApiClient = class {
495
495
constructor ( logger = console ) {
496
496
this . #logger = logger ;
497
497
this . #schemaChache = /* @__PURE__ */ new Map ( ) ;
498
+ this . #topicCache = /* @__PURE__ */ new Map ( ) ;
498
499
try {
499
500
Configuration . load ( ) ;
500
501
} catch ( error ) {
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export default class PubSubApiClient {
105
105
constructor ( logger = console ) {
106
106
this . #logger = logger ;
107
107
this . #schemaChache = new Map ( ) ;
108
+ this . #topicCache = new Map ( ) ;
108
109
// Check and load config
109
110
try {
110
111
Configuration . load ( ) ;
You can’t perform that action at this time.
0 commit comments