@@ -99,7 +99,7 @@ class CoCreateLazyLoader {
99
99
let name = data . method . split ( "." ) [ 0 ] ;
100
100
let method = data . endpoint . split ( " " ) [ 0 ] . toUpperCase ( ) ;
101
101
102
- data = await this . processOperators ( data , "" , name ) ;
102
+ // data = await this.processOperators(data, "", name);
103
103
104
104
let apiConfig = await this . getApiConfig ( data , name ) ;
105
105
// --- Refined Validation ---
@@ -111,7 +111,7 @@ class CoCreateLazyLoader {
111
111
`Configuration error: Missing base url for API '${ name } '.`
112
112
) ;
113
113
}
114
- apiConfig = await this . processOperators ( data , getApiConfig , "" ) ;
114
+ // apiConfig = await this.processOperators(data, getApiConfig, "");
115
115
116
116
let override = apiConfig . endpoint ?. [ data . endpoint ] || { } ;
117
117
@@ -255,6 +255,10 @@ class CoCreateLazyLoader {
255
255
* @throws {Error } If the request fails or returns a non-ok status.
256
256
*/
257
257
async makeHttpRequest ( url , options ) {
258
+ if ( ! this . server . AbortController ) {
259
+ console . log ( "makeHttpRequest test" ) ;
260
+ return { } ;
261
+ }
258
262
const controller = new this . server . AbortController ( ) ;
259
263
const timeoutId = setTimeout ( ( ) => controller . abort ( ) , options . timeout ) ;
260
264
options . signal = controller . signal ;
0 commit comments