File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -535,7 +535,7 @@ export class HttpDispatcher {
535535
536536 // POST /analytics/query
537537 if ( subPath === 'query' && m === 'POST' ) {
538- const result = await analyticsService . query ( body , { request : context . request } ) ;
538+ const result = await analyticsService . query ( body ) ;
539539 return { handled : true , response : this . success ( result ) } ;
540540 }
541541
@@ -548,7 +548,7 @@ export class HttpDispatcher {
548548 // POST /analytics/sql (Dry-run or debug)
549549 if ( subPath === 'sql' && m === 'POST' ) {
550550 // Assuming service has generateSql method
551- const result = await analyticsService . generateSql ( body , { request : context . request } ) ;
551+ const result = await analyticsService . generateSql ( body ) ;
552552 return { handled : true , response : this . success ( result ) } ;
553553 }
554554
You can’t perform that action at this time.
0 commit comments