From e608ca7826169c48696e763a046fe304ffa62b9c Mon Sep 17 00:00:00 2001 From: Will Sackfield Date: Mon, 12 May 2025 19:45:30 -0400 Subject: [PATCH] Revert "Add callout to move users towards fast-boots (#2322)" This reverts commit f5bb1debedc65ab5a71a982b503a731646dd2c67. --- pkg/image/build.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkg/image/build.go b/pkg/image/build.go index 55e3f80893..dcb62ecf71 100644 --- a/pkg/image/build.go +++ b/pkg/image/build.go @@ -274,13 +274,6 @@ func Build(ctx context.Context, cfg *config.Config, dir, imageName string, secre if err := BuildAddLabelsAndSchemaToImage(ctx, dockerCommand, imageName, labels, bundledSchemaFile, progressOutput); err != nil { return fmt.Errorf("Failed to add labels to image: %w", err) } - - if !fastFlag { - console.Info(`You can make your model boot faster with just a few changes. - -Follow this migration guide: https://replicate.com/docs/guides/fast-boots-migration`) - } - return nil }