Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start renaming onpremise to self-hosted #30482

Merged
merged 1 commit into from
Dec 7, 2021
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ body:
description: Where are you using our software?
options:
- SaaS (https://sentry.io/)
- self-hosted (`onpremise` deployment)
- self-hosted (https://develop.sentry.dev/self-hosted/)
validations:
required: true
- type: input
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ contact_links:
- name: Support Request
url: https://sentry.io/support
about: Use our dedicated support channel for paid accounts.
- name: Ask a question about self-hosting/on-premise
url: https://forum.sentry.io
about: Please use the community forums for questions about self-hosting.
- name: Ask a question about self-hosted Sentry (aka onpremise)
url: https://github.com/getsentry/self-hosted/issues/new
about: Please use the `self-hosted` repo for questions about self-hosted Sentry.
- name: Report a security vulnerability
url: https://sentry.io/security/#vulnerability-disclosure
about: Please see our guide for responsible disclosure.
2 changes: 1 addition & 1 deletion docker/cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ artifacts:
location: 'gs://sentryio-cloudbuild-opensource/getsentry/sentry/$COMMIT_SHA/'
paths: ['dist/*.whl']
options:
# We need more memory for Webpack builds & e2e onpremise tests
# We need more memory for Webpack builds & e2e self-hosted tests
machineType: 'N1_HIGHCPU_8'
env:
- 'CI=1'
Expand Down
6 changes: 3 additions & 3 deletions docker/sentry.conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@
# Queue #
#########

# See https://docs.getsentry.com/on-premise/server/queue/ for more
# information on configuring your queue broker and workers. Sentry relies
# on a Python framework called Celery to manage queues.
# See https://develop.sentry.dev/services/queue/ for more information on
# configuring your queue broker and workers. Sentry relies on a Python
# framework called Celery to manage queues.

rabbitmq = env("SENTRY_RABBITMQ_HOST") or (env("RABBITMQ_PORT_5672_TCP_ADDR") and "rabbitmq")

Expand Down
6 changes: 3 additions & 3 deletions src/sentry/data/config/sentry.conf.py.default
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ SENTRY_CACHE = 'sentry.cache.redis.RedisCache'
# Queue #
#########

# See https://docs.sentry.io/on-premise/server/queue/ for more
# information on configuring your queue broker and workers. Sentry relies
# on a Python framework called Celery to manage queues.
# See https://develop.sentry.dev/services/queue/ for more information on
# configuring your queue broker and workers. Sentry relies on a Python
# framework called Celery to manage queues.

BROKER_URL = 'redis://localhost:6379'

Expand Down
4 changes: 2 additions & 2 deletions src/sentry/runner/initializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def initialize_app(config, skip_service_validation=False):
warnings.warn(
"Sentry is configured to run asynchronous tasks in-process. "
"This is not recommended within production environments. "
"See https://docs.sentry.io/on-premise/server/queue/ for more information."
"See https://develop.sentry.dev/services/queue/ for more information."
)

if settings.SENTRY_SINGLE_ORGANIZATION:
Expand Down Expand Up @@ -530,7 +530,7 @@ def apply_legacy_settings(settings):
DeprecatedSettingWarning(
"SENTRY_USE_QUEUE",
"CELERY_ALWAYS_EAGER",
"https://docs.sentry.io/on-premise/server/queue/",
"https://develop.sentry.dev/services/queue/",
)
)
settings.CELERY_ALWAYS_EAGER = not settings.SENTRY_USE_QUEUE
Expand Down