We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f73d659 commit 7bab7f6Copy full SHA for 7bab7f6
packages/cubejs-client-core/src/index.ts
@@ -843,10 +843,7 @@ class CubeApi {
843
}
844
} catch (error: any) {
845
if (error.name === 'AbortError') {
846
- const message = options?.signal
847
- ? 'CubeSQL streaming query was aborted'
848
- : `CubeSQL streaming query timed out after ${options?.timeout || 5 * 60 * 1000}ms`;
849
- throw new Error(message);
+ throw new Error('aborted');
850
851
throw error;
852
} finally {
0 commit comments