Skip to content

Commit 4e14968

Browse files
committed
Fix typos
1 parent 5ace773 commit 4e14968

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Make sure you have the containers running:
9595

9696
docker compose up
9797

98-
Access [localhost:8000/{{ project_name }}/admin/](http://localhost:8000/{{ project_name }}/admin/).
98+
Access [localhost:8000/{{ project_name }}-admin/](http://localhost:8000/{{ project_name }}-admin/).
9999

100100
## Configuration / Environment Variables
101101

@@ -140,7 +140,7 @@ cog.out('\n'.join(mdown.split('\n')[1:]))
140140
* description: Sentry DSN to enable error logging
141141
* type: `str`
142142
* default: ``
143-
* **SENTRY_TRACE_SAMPLE_RATE**
143+
* **SENTRY_TRACES_SAMPLE_RATE**
144144
* description: Sentry trace sample rate https://docs.sentry.io/product/sentry-basics/concepts/tracing/trace-view/
145145
* type: `float`
146146
* default: `0.25`

project_name/config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Config(GoodConf):
4949
default="",
5050
description="Sentry DSN to enable error logging",
5151
)
52-
SENTRY_TRACE_SAMPLE_RATE: float = Field(
52+
SENTRY_TRACES_SAMPLE_RATE: float = Field(
5353
default=0.25,
5454
description="Sentry trace sample rate "
5555
"https://docs.sentry.io/product/sentry-basics/concepts/tracing/trace-view/",

0 commit comments

Comments
 (0)