-
Notifications
You must be signed in to change notification settings - Fork 1
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
Do not use condition endpoint when running locally #383
Conversation
📝 Walkthrough📝 WalkthroughWalkthroughThe changes involve modifications to the Changes
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🚧 Files skipped from review as they are similar to previous changes (1)
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
🧹 Outside diff range and nitpick comments (1)
src/Altinn.Correspondence.Application/InitializeCorrespondences/InitializeCorrespondencesHandler.cs (1)
369-372
: Consider making the localhost check configurable.While the current implementation works well, consider making the localhost check more flexible by moving it to configuration. This would allow easier testing and configuration for different environments.
Example approach:
- Add a configuration setting in GeneralSettings:
public class GeneralSettings { public string[] DisableConditionEndpointHosts { get; set; } = new[] { "localhost" }; }
- Update the check to use configuration:
- if (conditionEndpoint.Host == "localhost") + if (_generalSettings.DisableConditionEndpointHosts.Contains(conditionEndpoint.Host))
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
📒 Files selected for processing (1)
- src/Altinn.Correspondence.Application/InitializeCorrespondences/InitializeCorrespondencesHandler.cs (1 hunks)
🧰 Additional context used
🔇 Additional comments (1)
src/Altinn.Correspondence.Application/InitializeCorrespondences/InitializeCorrespondencesHandler.cs (1)
366-374
: LGTM! Clean implementation of localhost check.The implementation correctly prevents the use of condition endpoint in local environment by returning null when the host is localhost. This aligns well with the PR objective.
Description
Altinn Notifications condition endpoint does not and cannot work with localhost
Related Issue(s)
Verification
Documentation
Summary by CodeRabbit
New Features
Uri
return type for the condition endpoint.Bug Fixes
null
for condition endpoints when applicable.