Hyperlinkv0.9.0-beta.0

Gate

export class AdaptiveRequiresRateLimit extends Data.TaggedError(
  "AdaptiveRequiresRateLimit",
)<{
  readonly tagKey: string;
}> {
  override get message(): string {
    return (
      `Gate.HttpApiClient "${this.tagKey}" set adaptive without rateLimit. ` +
      `Adaptive 429 learning needs rateLimit for fallbackLimit / fallbackWindow.`
    );
  }
}
Referenced by 1 symbols