Skip to content

Commit 53011d9

Browse files
committed
Fix mocks
1 parent b5d537f commit 53011d9

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

packages/orchestrator/cmd/inspect-data/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ func main() {
2020
flag.Parse()
2121

2222
template := storage.NewTemplateFiles(
23+
storage.BucketStorage,
2324
"",
2425
*buildId,
2526
"",

packages/orchestrator/cmd/inspect-header/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ func main() {
1919
flag.Parse()
2020

2121
template := storage.NewTemplateFiles(
22+
storage.BucketStorage,
2223
"",
2324
*buildId,
2425
"",

packages/orchestrator/cmd/mock-snapshot/mock.go

+1
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@ func mockSnapshot(
187187
snapshotTime := time.Now()
188188

189189
snapshotTemplateFiles, err := storage.NewTemplateFiles(
190+
storage.BucketStorage,
190191
"snapshot-template",
191192
"f0370054-b669-eee4-b33b-573d5287c6ef",
192193
sbx.Config.KernelVersion,

packages/orchestrator/cmd/simulate-headers-merge/main.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ import (
77
"log"
88
"os"
99

10+
"github.com/google/uuid"
11+
1012
"github.com/e2b-dev/infra/packages/shared/pkg/storage"
1113
"github.com/e2b-dev/infra/packages/shared/pkg/storage/gcs"
1214
"github.com/e2b-dev/infra/packages/shared/pkg/storage/header"
13-
"github.com/google/uuid"
1415
)
1516

1617
func main() {
@@ -22,6 +23,7 @@ func main() {
2223
flag.Parse()
2324

2425
baseTemplate := storage.NewTemplateFiles(
26+
storage.BucketStorage,
2527
"",
2628
*baseBuildId,
2729
"",
@@ -30,6 +32,7 @@ func main() {
3032
)
3133

3234
diffTemplate := storage.NewTemplateFiles(
35+
storage.BucketStorage,
3336
"",
3437
*diffBuildId,
3538
"",

0 commit comments

Comments
 (0)