-
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: JSII error while configuring image builders on Python (#469)
JSII returned `Construct` instead of `RunnerImageBuilder` because `RunnerImageBuilder` inherits from `RunnerImageBuilderBase` which is marked internal. To resolve this, we instead return the same object as a new public interface called `IConfigurableImageBuilder`. We still want vanilla `IRunnerImageBuilder` as someone might want their own version of a builder that may not need components or network configuration. Just like `StaticRunnerImage.fromEcrRepository()``. This probably failed on Java, .NET and Go too. Fixes #468
- Loading branch information
Showing
5 changed files
with
120 additions
and
23 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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