-
Notifications
You must be signed in to change notification settings - Fork 61
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
fix(driving-license): allow 65+ to continue without quality photo #16510
Conversation
WalkthroughThe pull request introduces significant updates across multiple files, primarily focusing on the integration of the Changes
Possibly related PRs
Suggested labels
Suggested reviewers
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (6)
💤 Files with no reviewable changes (1)
🧰 Additional context used📓 Path-based instructions (1)
🔇 Additional comments (13)
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
Documentation and Community
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## pre-release/32.2.0 #16510 +/- ##
=====================================================
Coverage ? 36.77%
=====================================================
Files ? 6847
Lines ? 141870
Branches ? 40421
=====================================================
Hits ? 52167
Misses ? 89703
Partials ? 0
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report in Codecov by Sentry.
|
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.
Caution
Inline review comments failed to post. This is likely due to GitHub's limits when posting large numbers of comments.
Actionable comments posted: 2
🧹 Outside diff range and nitpick comments (1)
charts/islandis/values.dev.yaml (1)
Line range hint
1957-2122
: Consider adding USER_NOTIFICATION_API_URL to other relevant servicesWhile the
USER_NOTIFICATION_API_URL
has been added to theapplication-system-api
service, it's not present in other services that might need to interact with the user notification service. Consider adding this environment variable to other relevant services, such asservice-portal-api
.Add the following environment variable to the
service-portal-api
service configuration:USER_NOTIFICATION_API_URL: 'http://web-user-notification.user-notification.svc.cluster.local'Also, review other services that might need to interact with the user notification service and add this environment variable as necessary.
🛑 Comments failed to post (2)
charts/islandis/values.prod.yaml (1)
608-608: 💡 Codebase verification
Inconsistent USER_NOTIFICATION_API_URL across services and environments.
The
USER_NOTIFICATION_API_URL
is configured differently in various services and environments, which might lead to inconsistent behavior.
./charts/identity-server/values.prod.yaml
useshttps://user-notification.internal.island.is
- Other environment files in
charts/islandis
usehttp://web-user-notification.user-notification.svc.cluster.local
🔗 Analysis chain
New environment variable added for user notification service.
A new environment variable
USER_NOTIFICATION_API_URL
has been added to theapplication-system-api
service. This suggests integration with a user notification service, which is a good practice for improving user experience and communication.To ensure this change is consistent across the system, let's check if other services that might need user notifications have similar configurations:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check for USER_NOTIFICATION_API_URL in other services grep -R "USER_NOTIFICATION_API_URL" . | grep -v "application-system-api:"Length of output: 1761
charts/islandis/values.dev.yaml (1)
620-620: 💡 Codebase verification
Multiple services are missing the
USER_NOTIFICATION_API_URL
environment variable.
- Service
air-discount-scheme-api
is missingUSER_NOTIFICATION_API_URL
.- Service
air-discount-scheme-backend
is missingUSER_NOTIFICATION_API_URL
.- Service
air-discount-scheme-web
is missingUSER_NOTIFICATION_API_URL
.- Service
api
is missingUSER_NOTIFICATION_API_URL
.- Service
application-system-api
is missingUSER_NOTIFICATION_API_URL
.- Service
application-system-api-worker
is missingUSER_NOTIFICATION_API_URL
.- Service
application-system-form
is missingUSER_NOTIFICATION_API_URL
.- Service
consultation-portal
is missingUSER_NOTIFICATION_API_URL
.- Service
contentful-apps
is missingUSER_NOTIFICATION_API_URL
.- Service
contentful-entry-tagger-service
is missingUSER_NOTIFICATION_API_URL
.- Service
download-service
is missingUSER_NOTIFICATION_API_URL
.- Service
endorsement-system-api
is missingUSER_NOTIFICATION_API_URL
.- Service
external-contracts-tests
is missingUSER_NOTIFICATION_API_URL
.- Service
github-actions-cache
is missingUSER_NOTIFICATION_API_URL
.- Service
global
is missingUSER_NOTIFICATION_API_URL
.- Service
icelandic-names-registry-backend
is missingUSER_NOTIFICATION_API_URL
.- Service
island-ui-storybook
is missingUSER_NOTIFICATION_API_URL
.- Service
license-api
is missingUSER_NOTIFICATION_API_URL
.- Service
namespaces
is missingUSER_NOTIFICATION_API_URL
.- Service
portals-admin
is missingUSER_NOTIFICATION_API_URL
.- Service
regulations-admin-backend
is missingUSER_NOTIFICATION_API_URL
.- Service
search-indexer-service
is missingUSER_NOTIFICATION_API_URL
.- Service
service-portal
is missingUSER_NOTIFICATION_API_URL
.- Service
service-portal-api
is missingUSER_NOTIFICATION_API_URL
.- Service
services-documents
is missingUSER_NOTIFICATION_API_URL
.- Service
services-sessions
is missingUSER_NOTIFICATION_API_URL
.- Service
services-sessions-cleanup
is missingUSER_NOTIFICATION_API_URL
.- Service
services-sessions-worker
is missingUSER_NOTIFICATION_API_URL
.- Service
services-university-gateway
is missingUSER_NOTIFICATION_API_URL
.- Service
services-university-gateway-worker
is missingUSER_NOTIFICATION_API_URL
.- Service
skilavottord-web
is missingUSER_NOTIFICATION_API_URL
.- Service
skilavottord-ws
is missingUSER_NOTIFICATION_API_URL
.- Service
user-notification
is missingUSER_NOTIFICATION_API_URL
.- Service
user-notification-cleanup-worker
is missingUSER_NOTIFICATION_API_URL
.- Service
user-notification-worker
is missingUSER_NOTIFICATION_API_URL
.- Service
web
is missingUSER_NOTIFICATION_API_URL
.- Service
xroad-collector
is missingUSER_NOTIFICATION_API_URL
.🔗 Analysis chain
New environment variable added for user notification service.
A new environment variable
USER_NOTIFICATION_API_URL
has been added to theapplication-system-api
service. This is a good addition as it allows the service to communicate with the user notification service.Let's verify if other services that might need user notifications have this environment variable:
[/run_scripts]
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Check if other services have the USER_NOTIFICATION_API_URL grep -n "USER_NOTIFICATION_API_URL" charts/islandis/values.dev.yamlLength of output: 271
Script:
#!/bin/bash # List all services in the YAML file services=$(grep -E '^[a-zA-Z0-9_-]+:' charts/islandis/values.dev.yaml | awk -F: '{print $1}') # Check each service for USER_NOTIFICATION_API_URL for service in $services; do if ! grep -q "USER_NOTIFICATION_API_URL" charts/islandis/values.dev.yaml | grep "^$service:"; then echo "Service '$service' is missing USER_NOTIFICATION_API_URL." fi doneLength of output: 11211
Summary by CodeRabbit
USER_NOTIFICATION_API_URL
to enhance communication with the user notification service.