Skip to content

Commit 49fcaeb

Browse files
committed
chore(mu): remove unneeded await
1 parent fbd3024 commit 49fcaeb

File tree

1 file changed

+1
-1
lines changed
  • servers/mu/src/domain/clients

1 file changed

+1
-1
lines changed

servers/mu/src/domain/clients/cu.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function fetchHyperBeamResultWith ({ fetch, histogram, logger, fetchHBProcesses}
103103
* @returns result data from HyperBeam scheduler
104104
*/
105105
return async ({ processId, assignmentNum, logId }) => {
106-
const { HB_PROCESSES } = await fetchHBProcesses()
106+
const { HB_PROCESSES } = fetchHBProcesses()
107107
const HB_URL = HB_PROCESSES[processId]
108108
const resultUrl = `${HB_URL}/${processId}[email protected]/compute&slot=${assignmentNum}/results?require-codec=application/json&accept-bundle=true`
109109
logger({ log: `Fetching result from HyperBeam: ${resultUrl}`, logId })

0 commit comments

Comments
 (0)