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 --- 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