You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The root cause was introduced in #351 which unloads modules, including portions of awacs and troposphere. Because troposphere is being imported as part of the Blueprint base class's components, it is not completely unloaded. The remains result in type comparisons to class instances from the unloaded import which do not match subsequent imports.
… isinstance inconsistencies (#361)
* fix module not subscriptable
introduced in #354
* exclude awacs and troposphere from cfngin sys.modules unload
bug introduced in #351resolves#360
* update cfngin test with new call args
* add test for sys_module_exclude
Describe the bug
When using the newest version of runway (1.8.1) static modules are not able to be deployed. The following error is show:
To Reproduce
Steps to reproduce the behavior:
pipenv --python 3
pipenv install -d runway==1.8.1
pipenv run runway gen-sample static-angular
cd static-angular
DEPLOY_ENVIRONMENT=dev pipenv run runway deploy
Expected behavior
The static site is deployed.
Desktop (please complete the following information):
Additional context
Works in version 1.8.0.
The text was updated successfully, but these errors were encountered: