Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
---

Expand All @@ -21,15 +21,15 @@ 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.

```
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
Expand Down
Loading