We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In a common pattern we use
class Domain(ConfigItem): def __init__(self, name, base_port, java_home, domain_user_override=None, **kwargs): super(Domain, self).__init__(name=name, base_port=base_port, java_home=java_home, domain_user_override=domain_user_override, **kwargs) @property def user(self): if self.domain_user_override return self.domain_user_override return calculated_user
However when I attempt to use the override as such
with Domain(name='eui', base_port=9000, java_home='/opt/java/jdk1.6.0_17',file_encoding="UTF-8") as eui_domain: eui_domain.domain_user_override(devLocal="myname")
I get the following error:
ConfigError: Found different types of property 'domain_user_override' for different envs: <type 'str'> previously found types: [<type 'NoneType'>]
The text was updated successfully, but these errors were encountered:
Fixed in 10c5b46
Sorry, something went wrong.
No branches or pull requests
In a common pattern we use
However when I attempt to use the override as such
I get the following error:
The text was updated successfully, but these errors were encountered: