This repository was archived by the owner on Mar 23, 2026. It is now read-only.
Conversation
Test Results - Preflight, Unit23 084 tests ±0 21 225 ✅ ±0 6m 6s ⏱️ -16s Results for commit 1075e75. ± Comparison against base commit fcd464a. This pull request removes 1 and adds 1 tests. Note that renamed tests count towards both.♻️ This comment has been updated with latest results. |
bentsku
reviewed
Jan 27, 2026
Test Results (amd64) - Integration, Bootstrap 5 files 5 suites 2h 36m 39s ⏱️ Results for commit 1075e75. ♻️ This comment has been updated with latest results. |
bentsku
approved these changes
Jan 27, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
When a plugin is not supported by the user's license, we need to provide a clear and appropriate message to the customer. This PR improves the current approach in #13344 , which catches the
PluginDisabledexception in theServiceExceptionSerializer. The proposed changes introduce a new exception class and catch thePluginDisabledexception earlier in theServiceLoader.As a result,
PluginNotIncludedInUserLicenseError, a subclass ofNotImplementedError, is raised. This exception is then handled by theServiceExceptionSerializer, allowing the AWS catalog to generate and provide a custom error message when a plugin is not included in the user's license.Changes
PluginNotIncludedInUserLicenseError, a subclass ofNotImplementedErrorServiceExceptionSerializer, ifPluginNotIncludedInUserLicenseErroris being processed, no operation name is provided to catalog because the operation name is irrelevant in this case.PluginDisabledexception in theServiceLoaderif exception reason is that the plugin is not included in the user's licenseTests
PluginNotIncludedInUserLicenseErrorwas tested locallyRelated
FLC-183