(requestID string, status async.Status)
| 141 | } |
| 142 | |
| 143 | func (h *AsyncMessageHandler) updateStatus(requestID string, status async.Status) error { |
| 144 | key := async.StatusPath(h.storagePath, requestID, status) |
| 145 | return h.aws.UploadStringToS3("", h.config.Bucket, key) |
| 146 | } |
| 147 | |
| 148 | func (h *AsyncMessageHandler) getPayload(requestID string) (io.ReadCloser, error) { |
| 149 | key := async.PayloadPath(h.storagePath, requestID) |
no test coverage detected