Skip to content

Commit

Permalink
fix: replace git.io links with redirect targets (#1430)
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile-sentry authored Apr 26, 2022
1 parent 6abdcfe commit 9bd7766
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ sudo SENTRY_IMAGE=us.gcr.io/sentryio/sentry:83b1380 ./install.sh
Where you replace `83b1380` with the sha you want to use.

[build-status-image]: https://github.com/getsentry/self-hosted/workflows/test/badge.svg
[build-status-url]: https://git.io/JUYkh
[build-status-url]: https://github.com/getsentry/self-hosted/actions?query=workflow%3Atest+branch%3Amaster+event%3Apush

2 changes: 1 addition & 1 deletion cron/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [ "$(ls -A /usr/local/share/ca-certificates/)" ]; then
fi

# Prior art:
# - https://git.io/fjNOg
# - https://github.com/renskiy/cron-docker-image/blob/5600db37acf841c6d7a8b4f3866741bada5b4622/debian/start-cron#L34-L36
# - https://blog.knoldus.com/running-a-cron-job-in-docker-container/

declare -p | grep -Ev 'BASHOPTS|BASH_VERSINFO|EUID|PPID|SHELLOPTS|UID' > /container.env
Expand Down
2 changes: 1 addition & 1 deletion install/check-minimum-requirements.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ IS_KVM=$(docker run --rm busybox grep -c 'Common KVM processor' /proc/cpuinfo ||
if [[ "$IS_KVM" -eq 0 ]]; then
SUPPORTS_SSE42=$(docker run --rm busybox grep -c sse4_2 /proc/cpuinfo || :)
if [[ "$SUPPORTS_SSE42" -eq 0 ]]; then
echo "FAIL: The CPU your machine is running on does not support the SSE 4.2 instruction set, which is required for one of the services Sentry uses (Clickhouse). See https://git.io/JvLDt for more info."
echo "FAIL: The CPU your machine is running on does not support the SSE 4.2 instruction set, which is required for one of the services Sentry uses (Clickhouse). See https://github.com/getsentry/self-hosted/issues/340 for more info."
exit 1
fi
fi
Expand Down
4 changes: 2 additions & 2 deletions sentry/sentry.conf.example.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from sentry.conf.server import * # NOQA


# Generously adapted from pynetlinux: https://git.io/JJmga
# Generously adapted from pynetlinux: https://github.com/rlisagor/pynetlinux/blob/e3f16978855c6649685f0c43d4c3fcf768427ae5/pynetlinux/ifconfig.py#L197-L223
def get_internal_network():
import ctypes
import fcntl
Expand Down Expand Up @@ -187,7 +187,7 @@ def get_internal_network():
SENTRY_WEB_OPTIONS = {
"http": "%s:%s" % (SENTRY_WEB_HOST, SENTRY_WEB_PORT),
"protocol": "uwsgi",
# This is needed in order to prevent https://git.io/fj7Lw
# This is needed in order to prevent https://github.com/getsentry/sentry/blob/c6f9660e37fcd9c1bbda8ff4af1dcfd0442f5155/src/sentry/services/http.py#L70
"uwsgi-socket": None,
"so-keepalive": True,
# Keep this between 15s-75s as that's what Relay supports
Expand Down

0 comments on commit 9bd7766

Please sign in to comment.