usebruno/bruno · error · Error
Request failed
Error message
Request failed
What it means
Error "Request failed" thrown in usebruno/bruno.
Source
Thrown at packages/bruno-app/src/components/CollectionApp/index.js:252
initRunRequestEvent({ requestUid, itemUid: target.uid, collectionUid: collection.uid })
);
const runtimeOverrides
= options && typeof options.runtimeVariables === 'object' && options.runtimeVariables
? options.runtimeVariables
: {};
const mergedRuntime = {
...(collection.runtimeVariables || {}),
...runtimeOverrides
};
const result = await sendNetworkRequest(requestItem, collection, environment, mergedRuntime);
if (result?.error) {
const errorMessage = typeof result.error === 'string'
? result.error
: result.error?.message || 'Request failed';
throw new Error(errorMessage);
}
dispatch(
responseReceived({
itemUid: target.uid,
collectionUid: collection.uid,
response: {
status: result.status,
statusText: result.statusText,
headers: result.headers,
data: result.data,
dataBuffer: result.dataBuffer,
size: result.size,
duration: result.duration,
timeline: serializeTimeline(result.timeline)
}
})
);View on GitHub (pinned to 9bdd81c7bd)
Solutions
- Check the response/error details in the request timeline for the underlying cause.
- Verify the URL, network connectivity, and any auth credentials, then resend.
When it happens
Trigger: Thrown at packages/bruno-app/src/components/CollectionApp/index.js:252 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of usebruno/bruno@9bdd81c7bd (2026-08-13).
Data as JSON: /api/errors/b91f171814982514.
Report an issue: GitHub.