Good morning everyone,
I am experiencing an issue when I try to run a mutation after a stagedUploadsCreate step.
The error is the following:
{
"_logLevel": "info",
"msg": "data",
"data": {
"bulkOperationRunMutation": {
"bulkOperation": null,
"userErrors": [
{
"message": "The JSONL file could not be found. Try uploading the file again, and check that you've entered the URL correctly for the stagedUploadPath mutation argument.",
"field": null,
"code": "NO_SUCH_FILE",
"__typename": "BulkMutationUserError"
}
],
"__typename": "BulkOperationRunMutationPayload"
}
},
"_tags": [
"log",
"info"
]
}
but when I look at the logs of the stagedUploadsCreate step, the file seems to exist
{
"_logLevel": "info",
"msg": "data",
"data": {
"stagedUploadsCreate": {
"userErrors": [],
"stagedTargets": [
{
"url": "https://shopify-staged-uploads.storage.googleapis.com/",
"resourceUrl": null,
"parameters": [
{
"name": "Content-Type",
"value": "text/jsonl",
"__typename": "StagedUploadParameter"
},
{
"name": "success_action_status",
"value": "201",
"__typename": "StagedUploadParameter"
},
{
"name": "acl",
"value": "private",
"__typename": "StagedUploadParameter"
},
{
"name": "key",
"value": "tmp/62403641563/bulk/8ea51374-d78e-4d1a-a41c-a51012994718/update-file.jsonl",
"__typename": "StagedUploadParameter"
},
{
"name": "x-goog-date",
"value": "20230713T070206Z",
"__typename": "StagedUploadParameter"
},
{
"name": "x-goog-credential",
"value": "merchant-assets@shopify-tiers.iam.gserviceaccount.com/20230713/auto/storage/goog4_request",
"__typename": "StagedUploadParameter"
},
{
"name": "x-goog-algorithm",
"value": "GOOG4-RSA-SHA256",
"__typename": "StagedUploadParameter"
},
{
"name": "x-goog-signature",
"value": "64e8578ef88effbca24b18ffad79841c651b54857152b106bbbaa31ead311239d8ed232d7116413b80936a82d71b0acfba953ffa93a5dbb79d2cbd189b928f3a530b2ed00679f2d43c8695077049c8076e601e961211558f3b02e4fbbc206b9357e28da8ef25dcb77f81203907b2c79106f1c427f58e6660c5ce26c7a1c2b6ca5b970b73daac3beb5f0b2c294a21eb647df3a96212882fb7ebfb628651518c408f4809ed0739ff32c4b03b47a948160f1dee205d4ecd766dd17815ce5e31b81cd11b3f5176689b8fda57cbc16b73544e154518430d4bfe014410206064670e603d17f5b8900ff1f3e5aa7b1bc1ee5628fb94255c4251eacbb169e1194daa3099",
"__typename": "StagedUploadParameter"
},
{
"name": "policy",
"value": "eyJjb25kaXRpb25zIjpbeyJDb250ZW50LVR5cGUiOiJ0ZXh0XC9qc29ubCJ9LHsic3VjY2Vzc19hY3Rpb25fc3RhdHVzIjoiMjAxIn0seyJhY2wiOiJwcml2YXRlIn0sWyJjb250ZW50LWxlbmd0aC1yYW5nZSIsMSwyMDk3MTUyMF0seyJidWNrZXQiOiJzaG9waWZ5LXN0YWdlZC11cGxvYWRzIn0seyJrZXkiOiJ0bXBcLzYyNDAzNjQxNTYzXC9idWxrXC84ZWE1MTM3NC1kNzhlLTRkMWEtYTQxYy1hNTEwMTI5OTQ3MThcL3VwZGF0ZS1maWxlLmpzb25sIn0seyJ4LWdvb2ctZGF0ZSI6IjIwMjMwNzEzVDA3MDIwNloifSx7IngtZ29vZy1jcmVkZW50aWFsIjoibWVyY2hhbnQtYXNzZXRzQHNob3BpZnktdGllcnMuaWFtLmdzZXJ2aWNlYWNjb3VudC5jb21cLzIwMjMwNzEzXC9hdXRvXC9zdG9yYWdlXC9nb29nNF9yZXF1ZXN0In0seyJ4LWdvb2ctYWxnb3JpdGhtIjoiR09PRzQtUlNBLVNIQTI1NiJ9XSwiZXhwaXJhdGlvbiI6IjIwMjMtMDctMTRUMDc6MDI6MDZaIn0=",
"__typename": "StagedUploadParameter"
}
],
"__typename": "StagedMediaUploadTarget"
}
],
"__typename": "StagedUploadsCreatePayload"
}
},
"_tags": [
"log",
"info"
]
}
what could be the issue ?
Thank you in advance
Gianluca