Deleting the auto-ack on task fetching in favor of auto-acking on answer submission. Fixes broken e2e tests

This commit is contained in:
Keith Stevens
2023-01-10 13:24:56 +09:00
parent f028c07dfb
commit f2c235476e
@@ -39,8 +39,6 @@ const handler = async (req, res) => {
// Add the valid labels that can be used to flag messages in this Task
registeredTask["valid_labels"] = valid_labels;
// Update the backend with our Task ID
await oasstApiClient.ackTask(task.id, registeredTask.id);
// Send the results to the client.
res.status(200).json(registeredTask);