MCPcopy Index your code
hub / github.com/angular/angular / warningOptionsMessage

Function warningOptionsMessage

packages/common/http/src/fetch.ts:428–437  ·  view source on GitHub ↗
(req: HttpRequest<any>)

Source from the content-addressed store, hash-verified

426function noop(): void {}
427
428function warningOptionsMessage(req: HttpRequest<any>) {
429 if (req.credentials && req.withCredentials) {
430 console.warn(
431 formatRuntimeError(
432 RuntimeErrorCode.WITH_CREDENTIALS_OVERRIDES_EXPLICIT_CREDENTIALS,
433 `Angular detected that a \`HttpClient\` request has both \`withCredentials: true\` and \`credentials: '${req.credentials}'\` options. The \`withCredentials\` option is overriding the explicit \`credentials\` setting to 'include'. Consider removing \`withCredentials\` and using \`credentials: '${req.credentials}'\` directly for clarity.`,
434 ),
435 );
436 }
437}
438
439/**
440 * Zone.js treats a rejected promise that has not yet been awaited

Callers 1

createRequestInitMethod · 0.85

Calls 2

formatRuntimeErrorFunction · 0.85
warnMethod · 0.65

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…