@@ -69,7 +69,7 @@ export class SchemaManagementService {
6969 this . validateSchemaOperationSupport ( ) ;
7070
7171 try {
72- const httpClient = this . baseService . getInfluxHttpClient ( true ) ;
72+ const httpClient = this . baseService . getInfluxHttpClient ( false ) ;
7373
7474 // First, get the bucket ID by name
7575 const bucketsResponse = await httpClient . get < { buckets ?: any [ ] } > (
@@ -137,7 +137,7 @@ export class SchemaManagementService {
137137 this . validateSchemaOperationSupport ( ) ;
138138
139139 try {
140- const httpClient = this . baseService . getInfluxHttpClient ( true ) ;
140+ const httpClient = this . baseService . getInfluxHttpClient ( false ) ;
141141
142142 const bucketsResponse = await httpClient . get < { buckets ?: any [ ] } > (
143143 "/api/v2/buckets" ,
@@ -221,7 +221,7 @@ export class SchemaManagementService {
221221 this . validateSchemaOperationSupport ( ) ;
222222
223223 try {
224- const httpClient = this . baseService . getInfluxHttpClient ( true ) ;
224+ const httpClient = this . baseService . getInfluxHttpClient ( false ) ;
225225
226226 const bucketsResponse = await httpClient . get < { buckets ?: any [ ] } > (
227227 "/api/v2/buckets" ,
@@ -284,7 +284,7 @@ export class SchemaManagementService {
284284 this . validateSchemaOperationSupport ( ) ;
285285
286286 try {
287- const httpClient = this . baseService . getInfluxHttpClient ( true ) ;
287+ const httpClient = this . baseService . getInfluxHttpClient ( false ) ;
288288
289289 const bucketsResponse = await httpClient . get < { buckets ?: any [ ] } > (
290290 "/api/v2/buckets" ,
0 commit comments