Function
sendBuildLighthouseMessageQueue
(
workspaceId: string,
websiteId: string,
reportId: string,
url: string
)
Source from the content-addressed store, hash-verified
| 15 | }); |
| 16 | |
| 17 | export async function sendBuildLighthouseMessageQueue( |
| 18 | workspaceId: string, |
| 19 | websiteId: string, |
| 20 | reportId: string, |
| 21 | url: string |
| 22 | ) { |
| 23 | promMQProduceCounter.inc({ type: 'lighthouse' }); |
| 24 | await sock.send([ |
| 25 | 'lighthouse', |
| 26 | JSON.stringify({ workspaceId, websiteId, reportId, url }), |
| 27 | ]); |
| 28 | } |
| 29 | |
| 30 | export async function sendBuildSurveyClassifyMessageQueue( |
| 31 | options: z.infer<typeof classifySurveyMQSchema> |
Tested by
no test coverage detected