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 26f7df1 commit cd7e67dCopy full SHA for cd7e67d
src/packages/project/conat/connection.ts
@@ -70,14 +70,9 @@ async function callHub({
70
timeout?: number;
71
}) {
72
const subject = `hub.project.${project_id}.${service}`;
73
- try {
74
- const data = { name, args };
75
- const resp = await client.request(subject, data, { timeout });
76
- return resp.data;
77
- } catch (err) {
78
- err.message = `${err.message} - callHub: subject='${subject}', name='${name}', `;
79
- throw err;
80
- }
+ const data = { name, args };
+ const resp = await client.request(subject, data, { timeout });
+ return resp.data;
81
}
82
83
async function versionCheckLoop(client) {
0 commit comments