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

🔧 Changes to integrate generic settings for Open Klant #25

Merged
merged 2 commits into from
Jun 6, 2024
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
1 change: 1 addition & 0 deletions open_api_framework/conf/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -610,6 +610,7 @@ def init_sentry(before_send: Callable | None = None):
),
"SECRET_TOKEN": config("ELASTIC_APM_SECRET_TOKEN", "default"),
"SERVER_URL": ELASTIC_APM_SERVER_URL,
"TRANSACTION_SAMPLE_RATE": config("ELASTIC_APM_TRANSACTION_SAMPLE_RATE", 0.1),
}
if not ELASTIC_APM_SERVER_URL:
ELASTIC_APM["ENABLED"] = False
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ dependencies = [
"celery>=5.2.7",
"flower>=2.0.1",
"maykin-2fa>=1.0.0",
"django-setup-configuration>=0.1.0",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this line intentional? It doesn't relate to the issue

Copy link
Contributor Author

@stevenbal stevenbal Jun 6, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I should have changed the title of the PR. I was making these changes to make it work for Open Klant

]

[project.urls]
Expand Down
Loading