File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1070,7 +1070,7 @@ async function completeAsyncIteratorValue(
10701070 index >= stream . initialCount
10711071 ) {
10721072 // eslint-disable-next-line @typescript-eslint/no-floating-promises
1073- executeStreamIterator (
1073+ executeStreamAsyncIterator (
10741074 index ,
10751075 iterator ,
10761076 exeContext ,
@@ -1947,7 +1947,7 @@ function executeStreamField(
19471947 return asyncPayloadRecord ;
19481948}
19491949
1950- async function executeStreamIteratorItem (
1950+ async function executeStreamAsyncIteratorItem (
19511951 iterator : AsyncIterator < unknown > ,
19521952 exeContext : ExecutionContext ,
19531953 fieldGroup : FieldGroup ,
@@ -2017,7 +2017,7 @@ async function executeStreamIteratorItem(
20172017 }
20182018}
20192019
2020- async function executeStreamIterator (
2020+ async function executeStreamAsyncIterator (
20212021 initialIndex : number ,
20222022 iterator : AsyncIterator < unknown > ,
20232023 exeContext : ExecutionContext ,
@@ -2044,7 +2044,7 @@ async function executeStreamIterator(
20442044 let iteration ;
20452045 try {
20462046 // eslint-disable-next-line no-await-in-loop
2047- iteration = await executeStreamIteratorItem (
2047+ iteration = await executeStreamAsyncIteratorItem (
20482048 iterator ,
20492049 exeContext ,
20502050 fieldGroup ,
You can’t perform that action at this time.
0 commit comments