Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/source/gitlab/factory.go')
-rw-r--r--internal/source/gitlab/factory.go22
1 files changed, 13 insertions, 9 deletions
diff --git a/internal/source/gitlab/factory.go b/internal/source/gitlab/factory.go
index 41f7ea56..b033a592 100644
--- a/internal/source/gitlab/factory.go
+++ b/internal/source/gitlab/factory.go
@@ -6,7 +6,6 @@ import (
"gitlab.com/gitlab-org/gitlab-pages/internal/serving"
"gitlab.com/gitlab-org/gitlab-pages/internal/serving/disk/local"
"gitlab.com/gitlab-org/gitlab-pages/internal/serving/disk/zip"
- "gitlab.com/gitlab-org/gitlab-pages/internal/serving/serverless"
"gitlab.com/gitlab-org/gitlab-pages/internal/source/gitlab/api"
)
@@ -35,14 +34,19 @@ func fabricateServing(lookup api.LookupPath) serving.Serving {
case "zip":
return zip.Instance()
case "serverless":
- serving, err := serverless.NewFromAPISource(source.Serverless)
- if err != nil {
- log.WithError(err).Errorf("could not fabricate serving for project %d", lookup.ProjectID)
-
- break
- }
-
- return serving
+ log.Errorf("attempted to fabricate serverless serving for project %d", lookup.ProjectID)
+
+ // This feature has been disalbed, for more details see
+ // https://gitlab.com/gitlab-org/gitlab-pages/-/issues/467
+ //
+ // serving, err := serverless.NewFromAPISource(source.Serverless)
+ // if err != nil {
+ // log.WithError(err).Errorf("could not fabricate serving for project %d", lookup.ProjectID)
+ //
+ // break
+ // }
+ //
+ // return serving
}
return defaultServing()