From 03b969983a33254b487ba44e70f4165df59e5d3c Mon Sep 17 00:00:00 2001 From: Samy OUBOUAZIZ Date: Fri, 14 Nov 2025 11:42:01 +0100 Subject: [PATCH 1/2] chore(gen): content review MTA-6720 --- .../reference-content/containers-sandbox.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/serverless-containers/reference-content/containers-sandbox.mdx b/pages/serverless-containers/reference-content/containers-sandbox.mdx index b9f47b2352..031dabc036 100644 --- a/pages/serverless-containers/reference-content/containers-sandbox.mdx +++ b/pages/serverless-containers/reference-content/containers-sandbox.mdx @@ -3,7 +3,7 @@ title: Containers sandbox description: Learn more about the sandboxing environments of Scaleway Serverless Containers. tags: containers sandbox sandboxing gvisor isolation mechanism serverless v1 v2 clock drift skew dates: - validation: 2025-05-07 + validation: 2025-11-14 posted: 2025-05-07 --- From b5f16751171d4801f61dd5f85e1c0d86fdd05519 Mon Sep 17 00:00:00 2001 From: Samy OUBOUAZIZ Date: Fri, 14 Nov 2025 14:54:04 +0100 Subject: [PATCH 2/2] chore(gen): update --- .../troubleshooting/container-clock-drift.mdx | 2 +- .../troubleshooting/function-clock-drift.mdx | 2 +- .../troubleshooting/go-function-version-error.mdx | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pages/serverless-containers/troubleshooting/container-clock-drift.mdx b/pages/serverless-containers/troubleshooting/container-clock-drift.mdx index d5dcbdd9b7..f7969a479a 100644 --- a/pages/serverless-containers/troubleshooting/container-clock-drift.mdx +++ b/pages/serverless-containers/troubleshooting/container-clock-drift.mdx @@ -3,7 +3,7 @@ title: I am experiencing clock drift with my container description: Discover the causes and solutions to clock drift issues in Scaleway Serverless Containers. tags: containers clock drift skew error time difference serverless troubleshooting dates: - validation: 2025-05-07 + validation: 2025-11-14 posted: 2025-05-07 --- diff --git a/pages/serverless-functions/troubleshooting/function-clock-drift.mdx b/pages/serverless-functions/troubleshooting/function-clock-drift.mdx index 685784ea0a..7e8c1aee0e 100644 --- a/pages/serverless-functions/troubleshooting/function-clock-drift.mdx +++ b/pages/serverless-functions/troubleshooting/function-clock-drift.mdx @@ -3,7 +3,7 @@ title: I am experiencing clock drift with my function description: Discover the causes and solutions to clock drift issues in Scaleway Serverless Functions. tags: functions clock drift skew serverless difference time troubleshooting dates: - validation: 2025-05-07 + validation: 2025-11-14 posted: 2025-05-07 --- diff --git a/pages/serverless-functions/troubleshooting/go-function-version-error.mdx b/pages/serverless-functions/troubleshooting/go-function-version-error.mdx index 9c88e8a824..dbb72ff1a4 100644 --- a/pages/serverless-functions/troubleshooting/go-function-version-error.mdx +++ b/pages/serverless-functions/troubleshooting/go-function-version-error.mdx @@ -3,7 +3,7 @@ title: Go function build fails due to Go version description: Troubleshoot issues with Scaleway Serverless Functions Go build not working due to version error. tags: serverless functions troubleshooting issue error go version build dates: - validation: 2025-04-30 + validation: 2025-11-14 posted: 2025-04-30 --- @@ -21,7 +21,7 @@ This happens by default because the `go mod init` command includes the full Go v ## Possible solution -Remove the `Z` version from the `go.mod` file. In the example below, `X` corresponds to `1`, `Y` to `24`, and `Z` to `1`. +Remove the `Z` patch version from the `go.mod` file. In the example below, `X` corresponds to `1`, `Y` to `24`, and `Z` to `1`. Content of a `go.mod` file with an incorrect `X.Y.Z` (`1.24.1`) version. @@ -29,7 +29,7 @@ Content of a `go.mod` file with an incorrect `X.Y.Z` (`1.24.1`) version. go 1.24.1 ``` -The example below shows the content of the `go.mod` file after we have remove the incorrect `Z` version: +The example below shows the content of the `go.mod` file after we removed the incorrect `Z` version: ``` go 1.24