Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Bug]: Error while polling for changes #4897

Open
2 tasks done
bigskillet opened this issue Nov 20, 2024 · 21 comments · Fixed by #5001
Open
2 tasks done

[Bug]: Error while polling for changes #4897

bigskillet opened this issue Nov 20, 2024 · 21 comments · Fixed by #5001
Labels
Area: @shopify/theme @shopify/theme package issues State: Waiting for feedback Type: Bug Something isn't working

Comments

@bigskillet
Copy link

Please confirm that you have:

  • Searched existing issues to see if your issue is a duplicate. (If you’ve found a duplicate issue, feel free to add additional information in a comment on it.)
  • Reproduced the issue in the latest CLI version.

In which of these areas are you experiencing a problem?

Theme

Expected behavior

No errors.

Actual behavior

Polling errors while running: shopify theme dev --store store-name --theme-editor-sync --live-reload full-page. Related to --theme-editor-sync perhaps?

Image

Verbose output

Sorry, I killed the terminal before doing this.

Reproduction steps

  1. Run shopify theme dev --store store-name --theme-editor-sync --live-reload full-page
  2. Make edits to files and error will eventually appear

Operating System

macOS Sequoia 15.1.1

Shopify CLI version (check your project's package.json if you're not sure)

3.7.0

Shell

No response

Node version (run node -v if you're not sure)

No response

What language and version are you using in your application?

No response

@bigskillet bigskillet added the Type: Bug Something isn't working label Nov 20, 2024
@mgmanzella
Copy link
Contributor

👋 can you re run this and share the verbose output? or at minimum a copy-pastable version of the request is (i cant copy it from the image) -- thanks in advance

@bigskillet
Copy link
Author

bigskillet commented Nov 21, 2024

Here's the text from that screenshot, extracted with Chat-GPT:

Error while polling for changes.

The Admin GraphQL API responded unsuccessfully with the HTTP status 401 and errors:
“[API] Service is not valid for authentication”

Request ID: 75102210-6986-4c80-84f4-964b670714ed-1732129546

Error:
Too many polling errors…

Please check the errors above and ensure you have a stable internet connection.

Starting the server with --verbose doesn't immediately give the error - it's random. I haven't been able to spot any correlations. I've been running --verbose since you asked and it keeps looping the follow code. Not sure if it's producing/revealing the error or not.

2024-11-21T16:15:32.366Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/129630306352",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.70.0
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: darwin
 - Content-Type: application/json

to https://store-name.myshopify.com/admin/api/2024-10/graphql.json

@tannerkovach
Copy link

Getting the same issue here as well. I'm assuming it's related to previous versions of the cli where you'd get kicked off randomly and need to re-authenticate. Happening pretty consistently though with this newer version of 'shopify theme dev'.

@bigskillet
Copy link
Author

Another thing I'm noticing with --theme-editor-sync, which may be related to the polling issue, is that every time I start the server, it asks me to reconcile a file that has already been reconciled. For example, if I choose to keep the local version, stop the server, then restart, it'll ask to reconcile again. The same thing happens if I choose the remote – and I notice it doesn't update my local files. Seems like this would all be polling related, or no?

@lukeh-shopify
Copy link
Contributor

👋🏻 When you encounter the error with verbose logs, are there any request ID headers being output? That would be helpful so we can investigate if there is anything going wrong on our end

@JasonHassold
Copy link

Hey all, I've also been running into this issue.

The command I ran was shopify theme dev --theme-editor-sync --verbose

Even when not making any file changes it seems to be performing a repetitive call below and eventually errors out. Makes a call or a couple of calls every about every 2 seconds or so.

Note: I've redacted the store name

2024-11-29T02:56:55.582Z: Request to https://{STORE NAME}.myshopify.com/admin/api/2024-10/graphql.json completed in 328 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=148, graphql;desc="admin/query/other", cfRequestDuration;dur=226.999998
 - x-request-id: 1b926f0b-2b2e-4193-89c9-1a374d713ecf-1732849015
    
2024-11-29T02:56:55.582Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/144575332602",
  "after": "InNlY3Rpb25zXC9wcm9kdWN0LXJldmVhbGVyLXRlbXBsYXRlLmxpcXVpZCI="
}

Sometimes the after variable is null

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/144575332602",
  "after": null
}

cc @lukeh-shopify

@JasonHassold
Copy link

@catlee I'm still having this error even on v3.71.1

@catlee
Copy link
Contributor

catlee commented Dec 4, 2024

Even when not making any file changes it seems to be performing a repetitive call below and eventually errors out. Makes a call or a couple of calls every about every 2 seconds or so.

This is normal when running with --theme-editor-sync; we're polling for changes made via the theme editor.

What is the actual error produced?

@JasonHassold
Copy link

JasonHassold commented Dec 4, 2024

@catlee here's what I'm seeing with verbose output. I start shopify theme dev --theme-editor-sync and after 30 - 60 seconds it just errors out. Not making any file updates locally or theme edits remotely.

Image

@catlee catlee reopened this Dec 4, 2024
@catlee
Copy link
Contributor

catlee commented Dec 4, 2024

Are you using theme kit to access the shop?

Do you see any lines that say, "Error while polling for changes" before the CLI exits?

@JasonHassold
Copy link

@catlee I'm confused by the theme kit question

The error appears twice, the second one is what I showed above quits the CLI command and the first one is just a little while before it

@rcasimmons
Copy link

rcasimmons commented Jan 7, 2025

@catlee / @mgmanzella / @lukeh-shopify

Have we got an update on the above - it's frustrating that the last response was from a developer on 5th December and this is still an ongoing issue.

It's making working with Shopify more of a chore than a help really - considering software stability was supposedly on your radar from the previous unstable builds.

Verbose log
With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNlY3Rpb25zXC9jb21wYXJlLXRhYmxlLmxpcXVpZCI="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:34.672Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 399 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=169, graphql;desc="admin/query/other", cfRequestDuration;dur=204.999924
 - x-request-id: d81e28ac-7c2d-4046-a82d-7efedf7a48ed-1736248054
    
2025-01-07T11:07:34.672Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNuaXBwZXRzXC9ib29zdC1zZC1hcHAubGlxdWlkIg=="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:35.082Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 410 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=139, graphql;desc="admin/query/other", cfRequestDuration;dur=180.999994
 - x-request-id: cf90d064-166a-40ee-8d8b-7696f493c4ab-1736248055
    
2025-01-07T11:07:35.083Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InRlbXBsYXRlc1wvcGFnZS5pbmdyZWRpZW50cy5qc29uIg=="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:35.422Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 340 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=92, graphql;desc="admin/query/other", cfRequestDuration;dur=132.999897
 - x-request-id: ca6e4bc6-8a3e-4e2a-a2bc-a6d9495881ef-1736248055
    
2025-01-07T11:07:38.448Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:38.700Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 252 ms
With response headers:

    
╭─ error ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│                                                                                                                            │
│  Error while polling for changes.                                                                                          │
│                                                                                                                            │
│  request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json failed, reason:                           │
│                                                                                                                            │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

2025-01-07T11:07:38.703Z: Error while polling for changes.
FetchError: request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json failed, reason: 
    at ClientRequest.<anonymous> (file:///home/dev/.nvm/versions/node/v23.2.0/lib/node_modules/@shopify/cli/dist/chunk-VWNWE4HG.js:26484:18)
    at ClientRequest.emit (node:events:507:28)
    at ClientRequest.emit (node:domain:489:12)
    at emitErrorEvent (node:_http_client:104:11)
    at TLSSocket.socketErrorListener (node:_http_client:512:5)
    at TLSSocket.emit (node:events:507:28)
    at TLSSocket.emit (node:domain:489:12)
    at emitErrorNT (node:internal/streams/destroy:170:8)
    at emitErrorCloseNT (node:internal/streams/destroy:129:3)
    at process.processTicksAndRejections (node:internal/process/task_queues:90:21)
2025-01-07T11:07:41.705Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:41.957Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 252 ms
With response headers:

    
2025-01-07T11:07:44.959Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:45.314Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 355 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=128, graphql;desc="admin/query/other", cfRequestDuration;dur=174.999952
 - x-request-id: 35d8f31a-4c35-44c9-9743-7b47d3fecb56-1736248065
    
2025-01-07T11:07:45.314Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNlY3Rpb25zXC9jb21wYXJlLXRhYmxlLmxpcXVpZCI="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:45.567Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 252 ms
With response headers:

    
2025-01-07T11:07:48.570Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:49.108Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 538 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=299, graphql;desc="admin/query/other", cfRequestDuration;dur=347.000122
 - x-request-id: 3f87aec7-809e-4149-aa37-bbb71ce54135-1736248069
    
2025-01-07T11:07:49.109Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNlY3Rpb25zXC9jb21wYXJlLXRhYmxlLmxpcXVpZCI="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:49.487Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 378 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=156, graphql;desc="admin/query/other", cfRequestDuration;dur=197.000027
 - x-request-id: 64799ab2-6c7b-4229-b51d-dc947f29ccf2-1736248069
    
2025-01-07T11:07:49.487Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNuaXBwZXRzXC9ib29zdC1zZC1hcHAubGlxdWlkIg=="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:49.892Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 404 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=180, graphql;desc="admin/query/other", cfRequestDuration;dur=217.000008
 - x-request-id: 5fde0f9d-14fc-403d-acd4-4facbb20c3ff-1736248070
    
2025-01-07T11:07:49.892Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InRlbXBsYXRlc1wvcGFnZS5pbmdyZWRpZW50cy5qc29uIg=="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:50.218Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 325 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=123, graphql;desc="admin/query/other", cfRequestDuration;dur=166.999817
 - x-request-id: 1f4928d9-75d5-45bb-99d7-676178d9315e-1736248070
    
2025-01-07T11:07:53.246Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:53.608Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 362 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=150, graphql;desc="admin/query/other", cfRequestDuration;dur=201.000214
 - x-request-id: 349fdc26-6fa2-454a-82f2-7d1212911867-1736248073
    
2025-01-07T11:07:53.609Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNlY3Rpb25zXC9jb21wYXJlLXRhYmxlLmxpcXVpZCI="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:53.862Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 253 ms
With response headers:

    
╭─ error ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│                                                                                                                            │
│  Error while polling for changes.                                                                                          │
│                                                                                                                            │
│  request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json failed, reason:                           │
│                                                                                                                            │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

2025-01-07T11:07:53.864Z: Error while polling for changes.
FetchError: request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json failed, reason: 
    at ClientRequest.<anonymous> (file:///home/dev/.nvm/versions/node/v23.2.0/lib/node_modules/@shopify/cli/dist/chunk-VWNWE4HG.js:26484:18)
    at ClientRequest.emit (node:events:507:28)
    at ClientRequest.emit (node:domain:489:12)
    at emitErrorEvent (node:_http_client:104:11)
    at TLSSocket.socketErrorListener (node:_http_client:512:5)
    at TLSSocket.emit (node:events:507:28)
    at TLSSocket.emit (node:domain:489:12)
    at emitErrorNT (node:internal/streams/destroy:170:8)
    at emitErrorCloseNT (node:internal/streams/destroy:129:3)
    at process.processTicksAndRejections (node:internal/process/task_queues:90:21)
2025-01-07T11:07:56.866Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:07:57.119Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 253 ms
With response headers:

    
2025-01-07T11:08:00.121Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:00.374Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 253 ms
With response headers:

    
2025-01-07T11:08:03.377Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:03.820Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 443 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=218, graphql;desc="admin/query/other", cfRequestDuration;dur=275.000095
 - x-request-id: e53eda29-64e0-40f5-a6b2-a6ad8bd90555-1736248083
    
2025-01-07T11:08:03.821Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNlY3Rpb25zXC9jb21wYXJlLXRhYmxlLmxpcXVpZCI="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:04.195Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 374 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=134, graphql;desc="admin/query/other", cfRequestDuration;dur=190.999985
 - x-request-id: 276d25c5-29f7-4eec-9950-c58e0b075878-1736248084
    
2025-01-07T11:08:04.195Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNuaXBwZXRzXC9ib29zdC1zZC1hcHAubGlxdWlkIg=="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:04.448Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 253 ms
With response headers:

    
2025-01-07T11:08:07.450Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": null
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:08.072Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 621 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=161, graphql;desc="admin/query/other", cfRequestDuration;dur=205.999851
 - x-request-id: f99e8b65-8f8b-4604-84ce-fdf76cf02919-1736248088
    
2025-01-07T11:08:08.072Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNlY3Rpb25zXC9jb21wYXJlLXRhYmxlLmxpcXVpZCI="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:08.467Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 395 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=156, graphql;desc="admin/query/other", cfRequestDuration;dur=208.999872
 - x-request-id: a932de8b-9a3d-43f6-8f3a-24ddb5dbcb18-1736248088
    
2025-01-07T11:08:08.468Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InNuaXBwZXRzXC9ib29zdC1zZC1hcHAubGlxdWlkIg=="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:08.800Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 332 ms
With response headers:
 - content-type: application/json; charset=utf-8
 - server-timing: processing;dur=134, graphql;desc="admin/query/other", cfRequestDuration;dur=176.000118
 - x-request-id: da47fba7-f4e0-481a-9983-98192b1cd710-1736248089
    
2025-01-07T11:08:08.801Z: Sending "Admin" GraphQL request:
  query getThemeFileChecksums($id: ID!, $after: String) {
  theme(id: $id) {
    files(first: 250, after: $after) {
      nodes {
        filename
        size
        checksumMd5
        __typename
      }
      userErrors {
        filename
        code
        __typename
      }
      pageInfo {
        hasNextPage
        endCursor
        __typename
      }
      __typename
    }
    __typename
  }
}

With variables:
{
  "id": "gid://shopify/OnlineStoreTheme/177708925313",
  "after": "InRlbXBsYXRlc1wvcGFnZS5pbmdyZWRpZW50cy5qc29uIg=="
}

With request headers:
 - User-Agent: Shopify CLI; v=3.72.2
 - Keep-Alive: timeout=30
 - Sec-CH-UA-PLATFORM: linux
 - Content-Type: application/json

to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json
2025-01-07T11:08:09.054Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/2025-01/graphql.json completed in 253 ms
With response headers:

    
╭─ error ────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮
│                                                                                                                            │
│  Too many polling errors...                                                                                                │
│                                                                                                                            │
│  Please check the errors above and ensure you have a stable internet connection.                                           │
│                                                                                                                            │
╰────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯

@bigskillet
Copy link
Author

I'm still seeing the polling errors as well on v3.72.2. I notice that it happens a lot more if I'm working at coffee shops. I wonder if it has anything to do with spotty wifi connections maybe?

Also, when using --theme-editor-sync, it asks me to choose local/remote for config/settings_data.json every time I start dev. It never remembers that the file was reconciled already. Even if I do shopify theme push before starting dev. Not sure if that has anything to do with the polling/syncing, but thought I'd mention it.

@rcasimmons
Copy link

I'm still seeing the polling errors as well on v3.72.2. I notice that it happens a lot more if I'm working at coffee shops. I wonder if it has anything to do with spotty wifi connections maybe?

Also, when using --theme-editor-sync, it asks me to choose local/remote for config/settings_data.json every time I start dev. It never remembers that the file was reconciled already. Even if I do shopify theme push before starting dev. Not sure if that has anything to do with the polling/syncing, but thought I'd mention it.

Ditto, I get the recurring syncing question too.

As for internet, in my case atleast, I'm on a wired, home connection so not sure if it's isolated to spotty connections - my latency, speed and other factors are absolutely fine. I can browse, use Shopify without a hitch.

I guess we're just going to have to wait for a reply.

@catlee
Copy link
Contributor

catlee commented Jan 7, 2025

Thank you for your patience. We're having trouble reproducing this one, and the logs don't make it clear why the polling is failing.

Would you be able to run the CLI version from the PR below? I've added some more logging, and improved the retry logic a bit.

#5163 (comment)

@rcasimmons
Copy link

Thank you for your patience. We're having trouble reproducing this one, and the logs don't make it clear why the polling is failing.

Would you be able to run the CLI version from the PR below? I've added some more logging, and improved the retry logic a bit.

#5163 (comment)

Appreciate your response on this matter.

I will try the PR tomorrow to see if it gives us further logging. The platform I seemed to have this issue was on Windows via WSL Ubuntu 24.

@rcasimmons
Copy link

Thank you for your patience. We're having trouble reproducing this one, and the logs don't make it clear why the polling is failing.

Would you be able to run the CLI version from the PR below? I've added some more logging, and improved the retry logic a bit.

#5163 (comment)

@catlee

Not sure what's in the PR but it's never seems to quit with verbose active. If I run without verbose, the CLI quits due to the polling issues.

What I also notice is that the CLI will give me a proper error message when I get the message about 'Error while polling...' on macOS and will never quit but on WSL with Ubuntu 24.04 and the latest CLI, the CLI will simply tell me 'Error while polling' but never tells me the reason and soon enough simply quits entirely.

Attached a verbose log anyway:

Details

• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1826ms
2025-01-09T14:15:26.828Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2353 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=237;desc="gc:14", db;dur=49, db_async;dur=1.506, edge_cart;dur=1.34;desc="trips=1", render;dur=91, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="6jpx", requestID;desc="c0e1020c-3eeb-4e53-81ed-fcd16cbd2ca3-1736432124", cfRequestDuration;dur=2105.000019
  • x-request-id: c0e1020c-3eeb-4e53-81ed-fcd16cbd2ca3-1736432124

2025-01-09T14:15:26.828Z: ← 200 (request_id: c0e1020c-3eeb-4e53-81ed-fcd16cbd2ca3-1736432124)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2105ms
2025-01-09T14:15:26.846Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2155 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=265;desc="gc:28", db;dur=46, db_async;dur=1.714, edge_cart;dur=1.5;desc="trips=1", render;dur=99, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="tqlk", requestID;desc="5c798a5e-b5dc-43d9-965d-697ee52b5ab2-1736432125", cfRequestDuration;dur=1891.999960
  • x-request-id: 5c798a5e-b5dc-43d9-965d-697ee52b5ab2-1736432125

2025-01-09T14:15:26.846Z: ← 200 (request_id: 5c798a5e-b5dc-43d9-965d-697ee52b5ab2-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1892ms
2025-01-09T14:15:26.848Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 1963 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=218;desc="gc:12", db;dur=44, db_async;dur=1.761, edge_cart;dur=1.44;desc="trips=1", render;dur=81, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="8xm4", requestID;desc="87accded-c452-4097-8768-6a07834f7a27-1736432125", cfRequestDuration;dur=1699.000120
  • x-request-id: 87accded-c452-4097-8768-6a07834f7a27-1736432125

2025-01-09T14:15:26.848Z: ← 200 (request_id: 87accded-c452-4097-8768-6a07834f7a27-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1699ms
2025-01-09T14:15:26.857Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2428 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=277;desc="gc:21", db;dur=44, db_async;dur=1.381, edge_cart;dur=1.26;desc="trips=1", render;dur=115, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="nnrt", requestID;desc="af369311-a676-46e7-a5cc-eb49e393c37d-1736432124", cfRequestDuration;dur=2274.999857
  • x-request-id: af369311-a676-46e7-a5cc-eb49e393c37d-1736432124

2025-01-09T14:15:26.857Z: ← 200 (request_id: af369311-a676-46e7-a5cc-eb49e393c37d-1736432124)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2275ms
2025-01-09T14:15:26.876Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2212 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=213;desc="gc:19", db;dur=40, db_async;dur=1.577, edge_cart;dur=1.43;desc="trips=1", render;dur=76, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="jm7h", requestID;desc="40620deb-1c68-408b-887e-b75f1591ecdf-1736432125", cfRequestDuration;dur=1651.999712
  • x-request-id: 40620deb-1c68-408b-887e-b75f1591ecdf-1736432125

2025-01-09T14:15:26.876Z: ← 200 (request_id: 40620deb-1c68-408b-887e-b75f1591ecdf-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1652ms
2025-01-09T14:15:26.895Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2190 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=226;desc="gc:20", db;dur=47, db_async;dur=1.83, edge_cart;dur=1.54;desc="trips=1", render;dur=79, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="9dqt", requestID;desc="0344d1a3-e9b7-4d6e-9d3a-ea1ae1ad18c0-1736432125", cfRequestDuration;dur=1842.000008
  • x-request-id: 0344d1a3-e9b7-4d6e-9d3a-ea1ae1ad18c0-1736432125

2025-01-09T14:15:26.895Z: ← 200 (request_id: 0344d1a3-e9b7-4d6e-9d3a-ea1ae1ad18c0-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1842ms
2025-01-09T14:15:26.900Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2361 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=208, db;dur=40, db_async;dur=1.71, edge_cart;dur=1.3;desc="trips=1", render;dur=87, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="qfc8", requestID;desc="f9a9965c-5afb-471b-ac68-bfa4e5ed2bec-1736432124", cfRequestDuration;dur=2019.000053
  • x-request-id: f9a9965c-5afb-471b-ac68-bfa4e5ed2bec-1736432124

2025-01-09T14:15:26.900Z: ← 200 (request_id: f9a9965c-5afb-471b-ac68-bfa4e5ed2bec-1736432124)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2019ms
2025-01-09T14:15:26.909Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2343 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=292;desc="gc:19", db;dur=53, db_async;dur=1.596, edge_cart;dur=1.48;desc="trips=1", render;dur=115, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="nfq8", requestID;desc="190e7ac8-ac82-4c51-ad82-22d9d78749af-1736432124", cfRequestDuration;dur=2079.999924
  • x-request-id: 190e7ac8-ac82-4c51-ad82-22d9d78749af-1736432124

2025-01-09T14:15:26.909Z: ← 200 (request_id: 190e7ac8-ac82-4c51-ad82-22d9d78749af-1736432124)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2080ms
2025-01-09T14:15:26.912Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2010 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=234;desc="gc:30", db;dur=42, db_async;dur=1.539, edge_cart;dur=1.52;desc="trips=1", render;dur=111, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="gwkn", requestID;desc="1046579d-1c42-4d77-88db-fbd4d3f80da4-1736432125", cfRequestDuration;dur=1680.999994
  • x-request-id: 1046579d-1c42-4d77-88db-fbd4d3f80da4-1736432125

2025-01-09T14:15:26.912Z: ← 200 (request_id: 1046579d-1c42-4d77-88db-fbd4d3f80da4-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1681ms
2025-01-09T14:15:26.915Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2280 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=254;desc="gc:33", db;dur=46, db_async;dur=1.589, edge_cart;dur=1.5;desc="trips=1", render;dur=86, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="2cw9", requestID;desc="88b2f774-076d-4538-8c5e-165313392b9e-1736432124", cfRequestDuration;dur=2076.999903
  • x-request-id: 88b2f774-076d-4538-8c5e-165313392b9e-1736432124

2025-01-09T14:15:26.916Z: ← 200 (request_id: 88b2f774-076d-4538-8c5e-165313392b9e-1736432124)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2077ms
2025-01-09T14:15:26.920Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2004 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=285;desc="gc:35", db;dur=43, db_async;dur=1.75, edge_cart;dur=1.56;desc="trips=1", render;dur=110, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="k4xt", requestID;desc="24238f7d-36a3-4a19-9990-24182c2fd9c3-1736432125", cfRequestDuration;dur=1739.000082
  • x-request-id: 24238f7d-36a3-4a19-9990-24182c2fd9c3-1736432125

2025-01-09T14:15:26.920Z: ← 200 (request_id: 24238f7d-36a3-4a19-9990-24182c2fd9c3-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1739ms
2025-01-09T14:15:26.931Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2097 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=280;desc="gc:21", db;dur=37, db_async;dur=1.686, edge_cart;dur=1.38;desc="trips=1", render;dur=112, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="dgrl", requestID;desc="8d885363-9d62-41e6-87fb-e6a91844a265-1736432125", cfRequestDuration;dur=1734.000206
  • x-request-id: 8d885363-9d62-41e6-87fb-e6a91844a265-1736432125

2025-01-09T14:15:26.931Z: ← 200 (request_id: 8d885363-9d62-41e6-87fb-e6a91844a265-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1734ms
2025-01-09T14:15:26.934Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2066 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=237;desc="gc:32", db;dur=38, db_async;dur=1.533, edge_cart;dur=1.26;desc="trips=1", render;dur=84, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="vbbz", requestID;desc="c94e7f1f-bbb7-4b2c-8f07-8e0298078e9a-1736432125", cfRequestDuration;dur=1733.999968
  • x-request-id: c94e7f1f-bbb7-4b2c-8f07-8e0298078e9a-1736432125

2025-01-09T14:15:26.934Z: ← 200 (request_id: c94e7f1f-bbb7-4b2c-8f07-8e0298078e9a-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1734ms
2025-01-09T14:15:26.937Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2006 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=234;desc="gc:22", db;dur=39, db_async;dur=1.771, edge_cart;dur=1.32;desc="trips=1", render;dur=86, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="lv7f", requestID;desc="520d7c1a-6fa0-40f5-8348-8fb4d4d1dcf6-1736432125", cfRequestDuration;dur=1694.999933
  • x-request-id: 520d7c1a-6fa0-40f5-8348-8fb4d4d1dcf6-1736432125

2025-01-09T14:15:26.937Z: ← 200 (request_id: 520d7c1a-6fa0-40f5-8348-8fb4d4d1dcf6-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1695ms
2025-01-09T14:15:26.941Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 1992 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=207;desc="gc:24", db;dur=34, db_async;dur=1.359, edge_cart;dur=1.31;desc="trips=1", render;dur=80, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="zgjt", requestID;desc="eddd77e5-acca-43c5-827d-253e8c7d15fb-1736432125", cfRequestDuration;dur=1689.000130
  • x-request-id: eddd77e5-acca-43c5-827d-253e8c7d15fb-1736432125

2025-01-09T14:15:26.941Z: ← 200 (request_id: eddd77e5-acca-43c5-827d-253e8c7d15fb-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1689ms
2025-01-09T14:15:26.947Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2168 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=254;desc="gc:23", db;dur=37, db_async;dur=1.558, edge_cart;dur=1.53;desc="trips=1", render;dur=105, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="4dht", requestID;desc="57845974-eaa6-49b3-9168-79d39deba5d3-1736432125", cfRequestDuration;dur=2007.999897
  • x-request-id: 57845974-eaa6-49b3-9168-79d39deba5d3-1736432125

2025-01-09T14:15:26.947Z: ← 200 (request_id: 57845974-eaa6-49b3-9168-79d39deba5d3-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2008ms
2025-01-09T14:15:26.950Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2010 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=254;desc="gc:12", db;dur=38, db_async;dur=1.546, edge_cart;dur=1.43;desc="trips=1", render;dur=111, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="w6z2", requestID;desc="237ce769-d2ad-4ae7-b87a-2a6c362e91b1-1736432125", cfRequestDuration;dur=1697.000027
  • x-request-id: 237ce769-d2ad-4ae7-b87a-2a6c362e91b1-1736432125

2025-01-09T14:15:26.950Z: ← 200 (request_id: 237ce769-d2ad-4ae7-b87a-2a6c362e91b1-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1697ms
2025-01-09T14:15:26.981Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2486 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=313;desc="gc:5", db;dur=50, db_async;dur=1.752, edge_cart;dur=1.59;desc="trips=1", render;dur=138, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="2wpq", requestID;desc="fd31bafe-e7ad-4374-a2bb-194b9706993d-1736432124", cfRequestDuration;dur=2204.999924
  • x-request-id: fd31bafe-e7ad-4374-a2bb-194b9706993d-1736432124

2025-01-09T14:15:26.981Z: ← 200 (request_id: fd31bafe-e7ad-4374-a2bb-194b9706993d-1736432124)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2205ms
2025-01-09T14:15:26.999Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2205 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=245;desc="gc:26", db;dur=45, db_async;dur=1.506, edge_cart;dur=1.33;desc="trips=1", render;dur=109, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="zl2j", requestID;desc="9c159c30-c85e-43c5-93f4-d765ebb17d65-1736432125", cfRequestDuration;dur=1840.999842
  • x-request-id: 9c159c30-c85e-43c5-93f4-d765ebb17d65-1736432125

2025-01-09T14:15:26.999Z: ← 200 (request_id: 9c159c30-c85e-43c5-93f4-d765ebb17d65-1736432125)
• 14:15:26 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1841ms
2025-01-09T14:15:27.002Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2487 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=250;desc="gc:27", db;dur=43, db_async;dur=1.491, edge_cart;dur=1.37;desc="trips=1", render;dur=98, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="7n9f", requestID;desc="b2cbde22-cb68-477f-9ce4-f929c5895735-1736432124", cfRequestDuration;dur=2213.999987
  • x-request-id: b2cbde22-cb68-477f-9ce4-f929c5895735-1736432124

2025-01-09T14:15:27.003Z: ← 200 (request_id: b2cbde22-cb68-477f-9ce4-f929c5895735-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2214ms
2025-01-09T14:15:27.005Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2082 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=247;desc="gc:32", db;dur=47, db_async;dur=1.741, edge_cart;dur=1.36;desc="trips=1", render;dur=86, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="xtqk", requestID;desc="a2104b04-f571-4e89-b512-9b612b77c91a-1736432125", cfRequestDuration;dur=1766.000032
  • x-request-id: a2104b04-f571-4e89-b512-9b612b77c91a-1736432125

2025-01-09T14:15:27.005Z: ← 200 (request_id: a2104b04-f571-4e89-b512-9b612b77c91a-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1766ms
2025-01-09T14:15:27.019Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2201 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=216;desc="gc:21", db;dur=40, db_async;dur=1.405, edge_cart;dur=1.18;desc="trips=1", render;dur=80, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="px7z", requestID;desc="1a57dfaa-a9cc-4e8e-8c08-6c794c1f7eb8-1736432125", cfRequestDuration;dur=1895.999908
  • x-request-id: 1a57dfaa-a9cc-4e8e-8c08-6c794c1f7eb8-1736432125

2025-01-09T14:15:27.020Z: ← 200 (request_id: 1a57dfaa-a9cc-4e8e-8c08-6c794c1f7eb8-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1896ms
2025-01-09T14:15:27.034Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2630 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=249;desc="gc:8", db;dur=46, db_async;dur=1.752, edge_cart;dur=1.42;desc="trips=1", render;dur=105, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="f9z5", requestID;desc="f98d90c5-8115-4de2-adf5-5b3f9b257607-1736432124", cfRequestDuration;dur=2501.999855
  • x-request-id: f98d90c5-8115-4de2-adf5-5b3f9b257607-1736432124

2025-01-09T14:15:27.034Z: ← 200 (request_id: f98d90c5-8115-4de2-adf5-5b3f9b257607-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2502ms
2025-01-09T14:15:27.035Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2483 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=261;desc="gc:27", db;dur=48, db_async;dur=1.516, edge_cart;dur=1.2;desc="trips=1", render;dur=94, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="ttj9", requestID;desc="6fe7a84f-d311-4419-8168-86122f0e0ca3-1736432124", cfRequestDuration;dur=2152.999878
  • x-request-id: 6fe7a84f-d311-4419-8168-86122f0e0ca3-1736432124

2025-01-09T14:15:27.035Z: ← 200 (request_id: 6fe7a84f-d311-4419-8168-86122f0e0ca3-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2153ms
2025-01-09T14:15:27.065Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2303 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=227;desc="gc:21", db;dur=41, db_async;dur=1.608, edge_cart;dur=1.27;desc="trips=1", render;dur=87, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="87h8", requestID;desc="2e13aaa3-c1b3-44c7-9022-93a0362a8943-1736432125", cfRequestDuration;dur=1923.000097
  • x-request-id: 2e13aaa3-c1b3-44c7-9022-93a0362a8943-1736432125

2025-01-09T14:15:27.065Z: ← 200 (request_id: 2e13aaa3-c1b3-44c7-9022-93a0362a8943-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1923ms
2025-01-09T14:15:27.080Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2613 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=302;desc="gc:41", db;dur=48, db_async;dur=1.847, edge_cart;dur=1.32;desc="trips=1", render;dur=120, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="csth", requestID;desc="40ab3c01-4401-4619-b9e0-cacca66718a9-1736432124", cfRequestDuration;dur=2304.000139
  • x-request-id: 40ab3c01-4401-4619-b9e0-cacca66718a9-1736432124

2025-01-09T14:15:27.081Z: ← 200 (request_id: 40ab3c01-4401-4619-b9e0-cacca66718a9-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2304ms
2025-01-09T14:15:27.094Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2522 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=281;desc="gc:16", db;dur=50, db_async;dur=1.54, edge_cart;dur=1.47;desc="trips=1", render;dur=116, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="rgnz", requestID;desc="17da215a-53b7-4c63-ac13-9540691e392a-1736432125", cfRequestDuration;dur=2138.000011
  • x-request-id: 17da215a-53b7-4c63-ac13-9540691e392a-1736432125

2025-01-09T14:15:27.095Z: ← 200 (request_id: 17da215a-53b7-4c63-ac13-9540691e392a-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2138ms
2025-01-09T14:15:27.097Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2257 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=288;desc="gc:24", db;dur=45, db_async;dur=1.506, edge_cart;dur=1.37;desc="trips=1", render;dur=117, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="h9z4", requestID;desc="36a2a530-60a6-429e-8111-f90192a5cffe-1736432125", cfRequestDuration;dur=1953.999996
  • x-request-id: 36a2a530-60a6-429e-8111-f90192a5cffe-1736432125

2025-01-09T14:15:27.098Z: ← 200 (request_id: 36a2a530-60a6-429e-8111-f90192a5cffe-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1954ms
2025-01-09T14:15:27.115Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2397 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=355;desc="gc:32", db;dur=56, db_async;dur=1.858, edge_cart;dur=1.5;desc="trips=1", render;dur=135, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="xdck", requestID;desc="0ff2a0ae-199d-48c1-991f-42a4088a52e8-1736432125", cfRequestDuration;dur=2073.999882
  • x-request-id: 0ff2a0ae-199d-48c1-991f-42a4088a52e8-1736432125

2025-01-09T14:15:27.115Z: ← 200 (request_id: 0ff2a0ae-199d-48c1-991f-42a4088a52e8-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2074ms
2025-01-09T14:15:27.155Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2370 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=219;desc="gc:6", db;dur=37, db_async;dur=1.5, edge_cart;dur=1.37;desc="trips=1", render;dur=94, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="lv7f", requestID;desc="58453b38-e1b4-4665-9794-41a7edb7b371-1736432125", cfRequestDuration;dur=2085.000038
  • x-request-id: 58453b38-e1b4-4665-9794-41a7edb7b371-1736432125

2025-01-09T14:15:27.156Z: ← 200 (request_id: 58453b38-e1b4-4665-9794-41a7edb7b371-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2085ms
2025-01-09T14:15:27.159Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2546 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=263;desc="gc:19", db;dur=41, db_async;dur=1.528, edge_cart;dur=1.41;desc="trips=1", render;dur=108, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="hbpd", requestID;desc="48945583-e47c-4dcf-86ae-7d198112af2b-1736432125", cfRequestDuration;dur=2182.999849
  • x-request-id: 48945583-e47c-4dcf-86ae-7d198112af2b-1736432125

2025-01-09T14:15:27.160Z: ← 200 (request_id: 48945583-e47c-4dcf-86ae-7d198112af2b-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2183ms
2025-01-09T14:15:27.167Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2276 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=276;desc="gc:27", db;dur=42, db_async;dur=1.557, edge_cart;dur=1.43;desc="trips=1", render;dur=111, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="nrtw", requestID;desc="c14af185-dfe5-4d16-bdb8-b55a1533ebf8-1736432125", cfRequestDuration;dur=1950.999975
  • x-request-id: c14af185-dfe5-4d16-bdb8-b55a1533ebf8-1736432125

2025-01-09T14:15:27.168Z: ← 200 (request_id: c14af185-dfe5-4d16-bdb8-b55a1533ebf8-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1951ms
2025-01-09T14:15:27.173Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 6815 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1443, cfRequestDuration;dur=6156.000137
  • x-request-id: ff51d8e9-83e9-4b5a-8286-26734e7b7f36-1736432121

2025-01-09T14:15:27.173Z: ← 401 (request_id: ff51d8e9-83e9-4b5a-8286-26734e7b7f36-1736432121)
• 14:15:27 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 6156ms
2025-01-09T14:15:27.176Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2590 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=262;desc="gc:35", db;dur=38, db_async;dur=1.554, edge_cart;dur=1.42;desc="trips=1", render;dur=105, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="twlx", requestID;desc="c656a66c-211f-4e33-8645-4891f72dc8f8-1736432125", cfRequestDuration;dur=2245.999813
  • x-request-id: c656a66c-211f-4e33-8645-4891f72dc8f8-1736432125

2025-01-09T14:15:27.177Z: ← 200 (request_id: c656a66c-211f-4e33-8645-4891f72dc8f8-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2246ms
2025-01-09T14:15:27.180Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2502 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=284;desc="gc:30", db;dur=43, db_async;dur=1.785, edge_cart;dur=1.54;desc="trips=1", render;dur=107, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="csth", requestID;desc="26f0e223-1560-4228-aae4-577fa1840849-1736432125", cfRequestDuration;dur=2102.999926
  • x-request-id: 26f0e223-1560-4228-aae4-577fa1840849-1736432125

2025-01-09T14:15:27.180Z: ← 200 (request_id: 26f0e223-1560-4228-aae4-577fa1840849-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2103ms
2025-01-09T14:15:27.186Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2532 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=264;desc="gc:37", db;dur=40, db_async;dur=1.664, edge_cart;dur=1.41;desc="trips=1", render;dur=99, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="bc84", requestID;desc="055c4a19-75a9-4c7b-b857-81b7db11136a-1736432125", cfRequestDuration;dur=2063.999891
  • x-request-id: 055c4a19-75a9-4c7b-b857-81b7db11136a-1736432125

2025-01-09T14:15:27.186Z: ← 200 (request_id: 055c4a19-75a9-4c7b-b857-81b7db11136a-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2064ms
2025-01-09T14:15:27.191Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2457 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=225;desc="gc:35", db;dur=36, db_async;dur=1.832, edge_cart;dur=1.21;desc="trips=1", render;dur=79, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="bvqv", requestID;desc="5a98b574-ca11-4594-943f-b43a20e72132-1736432125", cfRequestDuration;dur=2130.000114
  • x-request-id: 5a98b574-ca11-4594-943f-b43a20e72132-1736432125

2025-01-09T14:15:27.192Z: ← 200 (request_id: 5a98b574-ca11-4594-943f-b43a20e72132-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2130ms
2025-01-09T14:15:27.206Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2244 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=239;desc="gc:36", db;dur=37, db_async;dur=1.348, edge_cart;dur=1.33;desc="trips=1", render;dur=86, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="xmgv", requestID;desc="73c87ff7-64b7-4369-b428-1c1460cd1534-1736432125", cfRequestDuration;dur=1987.999916
  • x-request-id: 73c87ff7-64b7-4369-b428-1c1460cd1534-1736432125

2025-01-09T14:15:27.206Z: ← 200 (request_id: 73c87ff7-64b7-4369-b428-1c1460cd1534-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1988ms
2025-01-09T14:15:27.229Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fimage.liquid completed in 385 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=278, cfRequestDuration;dur=329.999924
  • x-request-id: 289a254c-7adc-443e-815d-c655f2f45e7c-1736432126

• 14:15:27 Synced » delete snippets/image.liquid
2025-01-09T14:15:27.242Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fcart-drawer__tiered-discounts.liquid completed in 400 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=303, cfRequestDuration;dur=352.999926
  • x-request-id: 24e7867c-e908-421e-833f-f125f760f5a6-1736432126

• 14:15:27 Synced » delete snippets/cart-drawer__tiered-discounts.liquid
2025-01-09T14:15:27.259Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2488 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=270;desc="gc:30", db;dur=67, db_async;dur=1.589, edge_cart;dur=1.33;desc="trips=1", render;dur=105, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="pjnl", requestID;desc="22374362-0c3a-499c-bca5-5d622d31016f-1736432125", cfRequestDuration;dur=2108.999968
  • x-request-id: 22374362-0c3a-499c-bca5-5d622d31016f-1736432125

2025-01-09T14:15:27.259Z: ← 200 (request_id: 22374362-0c3a-499c-bca5-5d622d31016f-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2109ms
2025-01-09T14:15:27.260Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fcart-page__tiered-discount-desktop.liquid completed in 418 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=316, cfRequestDuration;dur=361.999989
  • x-request-id: 02958708-6b9f-47b0-b064-bf93ac88f419-1736432126

2025-01-09T14:15:27.261Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fimage-card.liquid completed in 417 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=308, cfRequestDuration;dur=359.999895
  • x-request-id: f1d4faba-970c-4e52-826f-8ed4a02a2180-1736432126

2025-01-09T14:15:27.262Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fcollection-card.liquid completed in 419 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=319, cfRequestDuration;dur=363.000154
  • x-request-id: 4d9d3f3d-428e-4ce6-9c1c-336be2593a4d-1736432126

• 14:15:27 Synced » delete snippets/cart-page__tiered-discount-desktop.liquid
• 14:15:27 Synced » delete snippets/image-card.liquid
• 14:15:27 Synced » delete snippets/collection-card.liquid
2025-01-09T14:15:27.293Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2877 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=229;desc="gc:12", db;dur=42, db_async;dur=1.474, edge_cart;dur=1.27;desc="trips=1", render;dur=90, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="xnjm", requestID;desc="cc718f02-0a2d-4956-9e17-b02c85f7126f-1736432124", cfRequestDuration;dur=2741.999865
  • x-request-id: cc718f02-0a2d-4956-9e17-b02c85f7126f-1736432124

2025-01-09T14:15:27.293Z: ← 200 (request_id: cc718f02-0a2d-4956-9e17-b02c85f7126f-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2742ms
2025-01-09T14:15:27.294Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2669 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=247;desc="gc:13", db;dur=48, db_async;dur=1.541, edge_cart;dur=1.43;desc="trips=1", render;dur=90, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="mvcg", requestID;desc="01914fab-d24a-40fd-a811-7f22f86d1408-1736432124", cfRequestDuration;dur=2368.000031
  • x-request-id: 01914fab-d24a-40fd-a811-7f22f86d1408-1736432124

2025-01-09T14:15:27.294Z: ← 200 (request_id: 01914fab-d24a-40fd-a811-7f22f86d1408-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2368ms
2025-01-09T14:15:27.314Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2559 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=265;desc="gc:46", db;dur=81, db_async;dur=1.652, edge_cart;dur=1.34;desc="trips=1", render;dur=94, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="lqws", requestID;desc="ac079b7d-0cd0-4c19-8fc7-08e887b643ef-1736432125", cfRequestDuration;dur=1783.999920
  • x-request-id: ac079b7d-0cd0-4c19-8fc7-08e887b643ef-1736432125

2025-01-09T14:15:27.314Z: ← 200 (request_id: ac079b7d-0cd0-4c19-8fc7-08e887b643ef-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 1784ms
2025-01-09T14:15:27.459Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fcart-page__tiered-discount-mobile.liquid completed in 617 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=307, cfRequestDuration;dur=548.999786
  • x-request-id: 628a4120-8b0d-488b-9dee-b414280d0be4-1736432126

• 14:15:27 Synced » delete snippets/cart-page__tiered-discount-mobile.liquid
2025-01-09T14:15:27.613Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 3086 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=241;desc="gc:28", db;dur=43, db_async;dur=1.667, edge_cart;dur=1.3;desc="trips=1", render;dur=86, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="7nn9", requestID;desc="6e19176b-5d5a-4aa5-99e0-a360a3b4698e-1736432124", cfRequestDuration;dur=2756.000042
  • x-request-id: 6e19176b-5d5a-4aa5-99e0-a360a3b4698e-1736432124

2025-01-09T14:15:27.613Z: ← 200 (request_id: 6e19176b-5d5a-4aa5-99e0-a360a3b4698e-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2756ms
2025-01-09T14:15:27.741Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 3286 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=214;desc="gc:13", db;dur=42, db_async;dur=1.523, edge_cart;dur=1.57;desc="trips=1", render;dur=83, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="8zfj", requestID;desc="640cf6ee-29f7-4779-8b09-cce62c580693-1736432124", cfRequestDuration;dur=2990.999937
  • x-request-id: 640cf6ee-29f7-4779-8b09-cce62c580693-1736432124

2025-01-09T14:15:27.741Z: ← 200 (request_id: 640cf6ee-29f7-4779-8b09-cce62c580693-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2991ms
2025-01-09T14:15:27.779Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 2919 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=227;desc="gc:24", db;dur=43, db_async;dur=1.699, edge_cart;dur=1.17;desc="trips=1", render;dur=88, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="xqxm", requestID;desc="fffb2f05-3a03-47b4-92e0-c724ea593a03-1736432125", cfRequestDuration;dur=2466.000080
  • x-request-id: fffb2f05-3a03-47b4-92e0-c724ea593a03-1736432125

2025-01-09T14:15:27.779Z: ← 200 (request_id: fffb2f05-3a03-47b4-92e0-c724ea593a03-1736432125)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2466ms
2025-01-09T14:15:27.849Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 3271 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=225;desc="gc:32", db;dur=37, db_async;dur=1.741, edge_cart;dur=1.21;desc="trips=1", render;dur=86, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="vk2j", requestID;desc="9be6ce94-7f35-4112-a0d2-f84134563e52-1736432124", cfRequestDuration;dur=2933.999777
  • x-request-id: 9be6ce94-7f35-4112-a0d2-f84134563e52-1736432124

2025-01-09T14:15:27.850Z: ← 200 (request_id: 9be6ce94-7f35-4112-a0d2-f84134563e52-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 2934ms
2025-01-09T14:15:27.956Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 3573 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=228;desc="gc:12", db;dur=44, db_async;dur=1.928, edge_cart;dur=1.39;desc="trips=1", render;dur=91, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="p4bb", requestID;desc="40367c4c-07b8-420a-9924-fa73a6d339b0-1736432124", cfRequestDuration;dur=3447.000027
  • x-request-id: 40367c4c-07b8-420a-9924-fa73a6d339b0-1736432124

2025-01-09T14:15:27.957Z: ← 200 (request_id: 40367c4c-07b8-420a-9924-fa73a6d339b0-1736432124)
• 14:15:27 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 3447ms
2025-01-09T14:15:28.242Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fmobile-nav-collection-slider.liquid completed in 397 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=302, cfRequestDuration;dur=345.999956
  • x-request-id: d0bd243b-cc54-4ff9-bc26-bd0298d1aa9a-1736432127

2025-01-09T14:15:28.244Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fingredient-circle.liquid completed in 400 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=303, cfRequestDuration;dur=348.000050
  • x-request-id: 42f9245b-0018-46e0-a050-f47970322702-1736432127

• 14:15:28 Synced » delete snippets/mobile-nav-collection-slider.liquid
• 14:15:28 Synced » delete snippets/ingredient-circle.liquid
2025-01-09T14:15:28.250Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fitem-card.liquid completed in 406 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=302, cfRequestDuration;dur=353.000164
  • x-request-id: 2140e9ee-ef0a-49d3-bd37-14da5c87995d-1736432127

• 14:15:28 Synced » delete snippets/item-card.liquid
2025-01-09T14:15:28.256Z: → Rendering https://fushi-wellbeing.myshopify.com/recommendations/products?_fd=0&pb=0&section_id=template--a631c9ed-d2dc-4260-9dea-38db7dd351e4__main&product_id=6851594748094&limit=4&intent=related (with snippets/review-card.liquid,snippets/section-heading.liquid,snippets/shop-all-button.liquid,snippets/usp-card.liquid,snippets/video.liquid,templates/index.json,templates/product.liquid,config/settings_schema.json,templates/page.faq.json,templates/page.subscribe-save.json,templates/page.the4-compare.json,templates/page.the4-wishlist.json,templates/index.liquid,templates/product.json)...
2025-01-09T14:15:28.262Z: → Rendering https://fushi-wellbeing.myshopify.com/recommendations/products?_fd=0&pb=0&section_id=template--a631c9ed-d2dc-4260-9dea-38db7dd351e4__main_product_related_products_U7AF3q&product_id=6851594748094&limit=4&intent=related (with snippets/review-card.liquid,snippets/section-heading.liquid,snippets/shop-all-button.liquid,snippets/usp-card.liquid,snippets/video.liquid,templates/index.json,templates/product.liquid,config/settings_schema.json,templates/page.faq.json,templates/page.subscribe-save.json,templates/page.the4-compare.json,templates/page.the4-wishlist.json,templates/index.liquid,templates/product.json)...
2025-01-09T14:15:28.270Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fshop-all-button.liquid completed in 424 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=305, cfRequestDuration;dur=365.999937
  • x-request-id: afb448f8-65da-49da-957f-4128bc34340e-1736432127

2025-01-09T14:15:28.271Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fsection-heading.liquid completed in 425 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=316, cfRequestDuration;dur=366.999865
  • x-request-id: 368381de-d722-45cb-9d18-2306e2435081-1736432127

2025-01-09T14:15:28.273Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Freview-card.liquid completed in 428 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=329, cfRequestDuration;dur=374.999762
  • x-request-id: d2510db8-104a-4418-83e1-ca4d23974968-1736432127

• 14:15:28 Synced » delete snippets/shop-all-button.liquid
• 14:15:28 Synced » delete snippets/section-heading.liquid
• 14:15:28 Synced » delete snippets/review-card.liquid
2025-01-09T14:15:29.221Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=templates%2Findex.json completed in 373 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=241, cfRequestDuration;dur=319.000006
  • x-request-id: 761e0558-9bf7-40c9-9cd5-dde813c50648-1736432128

• 14:15:29 Synced » delete templates/index.json
2025-01-09T14:15:29.243Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fvideo.liquid completed in 396 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=295, cfRequestDuration;dur=342.000008
  • x-request-id: 02903e67-b65f-4e27-88af-6e29ba04bed0-1736432128

• 14:15:29 Synced » delete snippets/video.liquid
2025-01-09T14:15:29.279Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=templates%2Fproduct.liquid completed in 431 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=319, cfRequestDuration;dur=378.000021
  • x-request-id: bd44c0e4-0d57-46e5-afb0-3e041f7a8532-1736432128

• 14:15:29 Synced » delete templates/product.liquid
2025-01-09T14:15:29.401Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9662 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1438, cfRequestDuration;dur=8904.999733
  • x-request-id: 0713a44d-897b-40b8-8c2d-54b3f04a2805-1736432120

2025-01-09T14:15:29.401Z: ← 401 (request_id: 0713a44d-897b-40b8-8c2d-54b3f04a2805-1736432120)
• 14:15:29 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 8905ms
2025-01-09T14:15:29.427Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 7196 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1539, cfRequestDuration;dur=6621.999979
  • x-request-id: 53ba4b13-9093-495c-a5cc-001db30e3026-1736432122

2025-01-09T14:15:29.427Z: ← 401 (request_id: 53ba4b13-9093-495c-a5cc-001db30e3026-1736432122)
• 14:15:29 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 6622ms
2025-01-09T14:15:29.454Z: Request to https://fushi-wellbeing.myshopify.com/admin/api/unstable/themes/177730060673/assets.json?asset%5Bkey%5D=snippets%2Fusp-card.liquid completed in 607 ms
With response headers:

  • content-type: application/json; charset=utf-8
  • server-timing: processing;dur=298, cfRequestDuration;dur=553.999901
  • x-request-id: 726d0e75-a563-49a2-a773-0474248231cb-1736432128

• 14:15:29 Synced » delete snippets/usp-card.liquid
2025-01-09T14:15:29.629Z: Request to https://fushi-wellbeing.myshopify.com/recommendations/products?_fd=0&pb=0&section_id=template--a631c9ed-d2dc-4260-9dea-38db7dd351e4__main&product_id=6851594748094&limit=4&intent=related completed in 1373 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=127;desc="gc:24", db;dur=25, db_async;dur=4.192, edge_cart;dur=1.48;desc="trips=1", asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", servedBy;desc="wn2l", requestID;desc="cb6c1095-dea6-4c40-9376-09930044658b-1736432128", cfRequestDuration;dur=1266.000032
  • x-request-id: cb6c1095-dea6-4c40-9376-09930044658b-1736432128

2025-01-09T14:15:29.629Z: ← 404 (request_id: cb6c1095-dea6-4c40-9376-09930044658b-1736432128)
• 14:15:29 Request » GET 404 /recommendations/products?section_id=template--a631c9ed-d2dc-4260-9dea-38db7dd35... 1266ms
2025-01-09T14:15:29.645Z: Request to https://fushi-wellbeing.myshopify.com/recommendations/products?_fd=0&pb=0&section_id=template--a631c9ed-d2dc-4260-9dea-38db7dd351e4__main_product_related_products_U7AF3q&product_id=6851594748094&limit=4&intent=related completed in 1382 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=82;desc="gc:37", db;dur=10, db_async;dur=1.736, edge_cart;dur=1.38;desc="trips=1", asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", servedBy;desc="pjnl", requestID;desc="9c3895c0-f167-4187-b876-7efc1a16cecb-1736432128", cfRequestDuration;dur=1220.999956
  • x-request-id: 9c3895c0-f167-4187-b876-7efc1a16cecb-1736432128

2025-01-09T14:15:29.645Z: ← 404 (request_id: 9c3895c0-f167-4187-b876-7efc1a16cecb-1736432128)
• 14:15:29 Request » GET 404 /recommendations/products?section_id=template--a631c9ed-d2dc-4260-9dea-38db7dd35... 1221ms
2025-01-09T14:15:30.539Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 10663 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1629, cfRequestDuration;dur=9897.000074
  • x-request-id: bb914b32-bf96-4968-b043-d7175bc37ebd-1736432120

2025-01-09T14:15:30.539Z: ← 401 (request_id: bb914b32-bf96-4968-b043-d7175bc37ebd-1736432120)
• 14:15:30 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9897ms
2025-01-09T14:15:31.009Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9591 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1773, cfRequestDuration;dur=8960.000038
  • x-request-id: 2c50f2b8-2228-401b-90af-804f52ce0c64-1736432122

2025-01-09T14:15:31.009Z: ← 401 (request_id: 2c50f2b8-2228-401b-90af-804f52ce0c64-1736432122)
• 14:15:31 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 8960ms
• 14:15:31 Request » GET 200 /cart/?view=viewjs 187ms
• 14:15:31 Request » GET 200 /cart/?view=ship 181ms
2025-01-09T14:15:31.170Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9466 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1438, cfRequestDuration;dur=8812.999964
  • x-request-id: 77479903-f4ac-46e6-a8f9-81531c5d2642-1736432122

2025-01-09T14:15:31.170Z: ← 401 (request_id: 77479903-f4ac-46e6-a8f9-81531c5d2642-1736432122)
• 14:15:31 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 8813ms
2025-01-09T14:15:31.319Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 7034 ms
With response headers:

  • cache-control: no-cache, no-store
  • content-type: text/html; charset=utf-8
  • server-timing: processing;dur=279, db;dur=70, db_async;dur=20.438, edge_cart;dur=1.37;desc="trips=1", render;dur=108, asn;desc="5089", edge;desc="MAN", country;desc="GB", theme;desc="177730060673", pageType;desc="product", servedBy;desc="9lqz", requestID;desc="4e0aca38-f226-4566-9905-ea672a4475de-1736432124", cfRequestDuration;dur=6860.000134
  • x-request-id: 4e0aca38-f226-4566-9905-ea672a4475de-1736432124

2025-01-09T14:15:31.319Z: ← 200 (request_id: 4e0aca38-f226-4566-9905-ea672a4475de-1736432124)
• 14:15:31 Request » GET 200 /products/really-good-vitamin-e-oil-50ml?view=product 6860ms
• 14:15:31 Request » GET 200 /apps/loggedincustomer 439ms
2025-01-09T14:15:31.798Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9701 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1774, cfRequestDuration;dur=9111.000061
  • x-request-id: 555323b4-3b99-42c4-93e4-77b632192f9d-1736432122

2025-01-09T14:15:31.798Z: ← 401 (request_id: 555323b4-3b99-42c4-93e4-77b632192f9d-1736432122)
• 14:15:31 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9111ms
2025-01-09T14:15:32.001Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 8659 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1383, cfRequestDuration;dur=8080.999851
  • x-request-id: fc6a53ed-2a0c-4cdc-8a0a-525f281734ad-1736432123

2025-01-09T14:15:32.001Z: ← 401 (request_id: fc6a53ed-2a0c-4cdc-8a0a-525f281734ad-1736432123)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 8081ms
2025-01-09T14:15:32.058Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9565 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1565, cfRequestDuration;dur=9385.999918
  • x-request-id: e258484d-2fdc-4982-be7b-b27a6ae1812c-1736432122

2025-01-09T14:15:32.058Z: ← 401 (request_id: e258484d-2fdc-4982-be7b-b27a6ae1812c-1736432122)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9386ms
2025-01-09T14:15:32.160Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 10872 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=2035, cfRequestDuration;dur=10262.999773
  • x-request-id: e6fd6222-b66b-43c1-b697-0714e980a2ee-1736432121

2025-01-09T14:15:32.160Z: ← 401 (request_id: e6fd6222-b66b-43c1-b697-0714e980a2ee-1736432121)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10263ms
2025-01-09T14:15:32.216Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 11731 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1384, cfRequestDuration;dur=11013.999701
  • x-request-id: 3661136e-81f4-4156-b195-f064d11ca9e9-1736432121

2025-01-09T14:15:32.216Z: ← 401 (request_id: 3661136e-81f4-4156-b195-f064d11ca9e9-1736432121)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 11014ms
2025-01-09T14:15:32.299Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 8167 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1028, cfRequestDuration;dur=7909.999847
  • x-request-id: c67f9fa0-84cc-44ab-add5-da7ab5e936cc-1736432124

2025-01-09T14:15:32.299Z: ← 401 (request_id: c67f9fa0-84cc-44ab-add5-da7ab5e936cc-1736432124)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 7910ms
2025-01-09T14:15:32.345Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 8353 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1561, cfRequestDuration;dur=8167.999983
  • x-request-id: c4d2e757-cb4a-4b1d-af28-aca33ece32b1-1736432124

2025-01-09T14:15:32.345Z: ← 401 (request_id: c4d2e757-cb4a-4b1d-af28-aca33ece32b1-1736432124)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 8168ms
2025-01-09T14:15:32.471Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 11702 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1622, cfRequestDuration;dur=10904.000044
  • x-request-id: de98af8c-a583-4175-afd7-7fcb42b540de-1736432121

2025-01-09T14:15:32.471Z: ← 401 (request_id: de98af8c-a583-4175-afd7-7fcb42b540de-1736432121)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10904ms
2025-01-09T14:15:32.472Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 11571 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1728, cfRequestDuration;dur=10779.999971
  • x-request-id: 284700ba-d672-4624-9c4e-b67ddd475966-1736432121

2025-01-09T14:15:32.472Z: ← 401 (request_id: 284700ba-d672-4624-9c4e-b67ddd475966-1736432121)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10780ms
2025-01-09T14:15:32.540Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 10570 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1283, cfRequestDuration;dur=10342.999935
  • x-request-id: d86ff4a4-5b49-413e-b5d9-e6de4384a649-1736432122

2025-01-09T14:15:32.540Z: ← 401 (request_id: d86ff4a4-5b49-413e-b5d9-e6de4384a649-1736432122)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10343ms
2025-01-09T14:15:32.585Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9979 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1587, cfRequestDuration;dur=9371.999979
  • x-request-id: 4543567a-4659-4b52-b627-0fab8fbec377-1736432123

2025-01-09T14:15:32.586Z: ← 401 (request_id: 4543567a-4659-4b52-b627-0fab8fbec377-1736432123)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9372ms
2025-01-09T14:15:32.654Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9919 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1802, cfRequestDuration;dur=9332.999945
  • x-request-id: 1f0f8bc8-48c7-42f8-9a00-bce8c19e83e7-1736432123

2025-01-09T14:15:32.654Z: ← 401 (request_id: 1f0f8bc8-48c7-42f8-9a00-bce8c19e83e7-1736432123)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9333ms
2025-01-09T14:15:32.655Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 11083 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1193, cfRequestDuration;dur=10445.000172
  • x-request-id: 47f38ab7-6047-4cb1-99b9-9b5a58ab7815-1736432122

2025-01-09T14:15:32.655Z: ← 401 (request_id: 47f38ab7-6047-4cb1-99b9-9b5a58ab7815-1736432122)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10445ms
2025-01-09T14:15:32.681Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 11521 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1792, cfRequestDuration;dur=10848.000050
  • x-request-id: 2c249874-177f-4dc0-9ba1-441cbf5f3d3c-1736432121

2025-01-09T14:15:32.681Z: ← 401 (request_id: 2c249874-177f-4dc0-9ba1-441cbf5f3d3c-1736432121)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10848ms
2025-01-09T14:15:32.707Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 10353 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1437, cfRequestDuration;dur=10140.000105
  • x-request-id: 13a2d8b7-cf66-4d21-82e9-08549266023a-1736432122

2025-01-09T14:15:32.707Z: ← 401 (request_id: 13a2d8b7-cf66-4d21-82e9-08549266023a-1736432122)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10140ms
2025-01-09T14:15:32.777Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9938 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1374, cfRequestDuration;dur=9337.999821
  • x-request-id: 03d45a87-f54c-4ef9-9128-9dd3bd1c53fd-1736432123

2025-01-09T14:15:32.777Z: ← 401 (request_id: 03d45a87-f54c-4ef9-9128-9dd3bd1c53fd-1736432123)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9338ms
2025-01-09T14:15:32.866Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 11042 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1693, cfRequestDuration;dur=10409.999847
  • x-request-id: d7a45c3e-e60d-4000-a7d5-9ae74350adb8-1736432122

2025-01-09T14:15:32.866Z: ← 401 (request_id: d7a45c3e-e60d-4000-a7d5-9ae74350adb8-1736432122)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 10410ms
2025-01-09T14:15:32.884Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 11866 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1732, cfRequestDuration;dur=11180.000067
  • x-request-id: 04029bf9-9777-490e-9549-f43594849730-1736432121

2025-01-09T14:15:32.884Z: ← 401 (request_id: 04029bf9-9777-490e-9549-f43594849730-1736432121)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 11180ms
2025-01-09T14:15:32.910Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9061 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1542, cfRequestDuration;dur=8876.999855
  • x-request-id: 4de4427d-92b6-46e9-90e2-9662888c21cb-1736432124

2025-01-09T14:15:32.910Z: ← 401 (request_id: 4de4427d-92b6-46e9-90e2-9662888c21cb-1736432124)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 8877ms
2025-01-09T14:15:32.995Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 10029 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1557, cfRequestDuration;dur=9440.000057
  • x-request-id: a410a02b-9159-4022-809b-466812a4034e-1736432123

2025-01-09T14:15:32.995Z: ← 401 (request_id: a410a02b-9159-4022-809b-466812a4034e-1736432123)
• 14:15:32 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9440ms
2025-01-09T14:15:33.048Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9464 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1574, cfRequestDuration;dur=8835.000277
  • x-request-id: 531dc46c-5281-4290-9b24-6ddc420413f6-1736432124

2025-01-09T14:15:33.048Z: ← 401 (request_id: 531dc46c-5281-4290-9b24-6ddc420413f6-1736432124)
• 14:15:33 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 8835ms
2025-01-09T14:15:33.128Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 12493 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1667, cfRequestDuration;dur=11681.999922
  • x-request-id: b1833500-32c6-47fd-aa69-a966c0dec3ca-1736432121

2025-01-09T14:15:33.128Z: ← 401 (request_id: b1833500-32c6-47fd-aa69-a966c0dec3ca-1736432121)
• 14:15:33 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 11682ms
2025-01-09T14:15:33.129Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 10023 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1651, cfRequestDuration;dur=9447.999954
  • x-request-id: aba4547d-af66-41b7-8006-e1ecef8f7410-1736432123

2025-01-09T14:15:33.130Z: ← 401 (request_id: aba4547d-af66-41b7-8006-e1ecef8f7410-1736432123)
• 14:15:33 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9448ms
2025-01-09T14:15:33.161Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9942 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1637, cfRequestDuration;dur=9344.999790
  • x-request-id: b1b9c3a5-9c30-4895-acd3-18158c82574e-1736432123

2025-01-09T14:15:33.161Z: ← 401 (request_id: b1b9c3a5-9c30-4895-acd3-18158c82574e-1736432123)
• 14:15:33 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9345ms
2025-01-09T14:15:33.392Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 9670 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=1793, cfRequestDuration;dur=9004.000187
  • x-request-id: 86921fb6-c344-4a4d-9f2e-f0ee45adc94f-1736432124

2025-01-09T14:15:33.392Z: ← 401 (request_id: 86921fb6-c344-4a4d-9f2e-f0ee45adc94f-1736432124)
• 14:15:33 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9004ms
2025-01-09T14:15:33.549Z: Request to https://fushi-wellbeing.myshopify.com/products/really-good-vitamin-e-oil-50ml?_fd=0&pb=0&view=product completed in 10099 ms
With response headers:

  • content-type: text/html
  • server-timing: processing;dur=2063, cfRequestDuration;dur=9887.000084
  • x-request-id: c06cae8f-8b4e-4d9c-b312-ac9f0b871ac1-1736432123

2025-01-09T14:15:33.549Z: ← 401 (request_id: c06cae8f-8b4e-4d9c-b312-ac9f0b871ac1-1736432123)
• 14:15:33 Request » GET 401 /products/really-good-vitamin-e-oil-50ml?view=product 9887ms

@catlee
Copy link
Contributor

catlee commented Jan 9, 2025

@rcasimmons Thanks for the logs!

This is interesting... I don't see any of the polling information in the log. Did you run this with --theme-editor-sync?

It does look like at some point we lose valid authentication, the requests to /products/really-good-vitamin-e-oil-50ml change from 200 response code to 401 response code.

@rcasimmons
Copy link

@catlee

It's very rare I use CLI without --theme-editor-sync ever since it was introduced as it's immensely helpful for us so the command was indeed ran with it.

Could the 401 possibly be the cause?

@catlee
Copy link
Contributor

catlee commented Jan 10, 2025

@rcasimmons The 401 might be related, it's hard to tell from these logs.

Do you have an example which includes "Error while polling"?

@rcasimmons
Copy link

@rcasimmons The 401 might be related, it's hard to tell from these logs.

Do you have an example which includes "Error while polling"?

Sorry for the delay here @catlee.

Sadly I don't as the PR I ran with verbose never seemed to exit but without verbose, it would. Since then, I get the polling issue but now it doesn't appear to quit.

Instead I simply get an error with the token being invalid but I'll report this as a sep. issue.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: @shopify/theme @shopify/theme package issues State: Waiting for feedback Type: Bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

7 participants