You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1460,6 +1460,10 @@ export abstract class ApiState<
1460
1460
returnthis;
1461
1461
}
1462
1462
1463
+
/** The name of this caller to be used in debugging/error messages.
1464
+
* @internal */
1465
+
_name?: string;
1466
+
1463
1467
protected_simultaneousGetCaching=false;
1464
1468
1465
1469
/** Enable simultaneous request caching for the API caller,
@@ -1591,7 +1595,7 @@ export abstract class ApiState<
1591
1595
switch(this._concurrencyMode){
1592
1596
case"disallow":
1593
1597
throwError(
1594
-
`Request is already pending for invoker ${this.invoker.toString()}`,
1598
+
`Request is already pending for API Caller ${this.$metadata ? `/${this.apiClient.$metadata.controllerRoute}/${this.$metadata.name}` : (this._name??this.invoker.toString())}`,
0 commit comments