Skip to content

Commit b8a059b

Browse files
committed
fix
Signed-off-by: Fatih Acar <[email protected]>
1 parent becb2e6 commit b8a059b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/infrahub/core/attribute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def __init__(
141141
self.value = self.schema.default_value
142142
self.is_default = True
143143

144-
if self.value is not None:
144+
if self.value is not None and self.from_pool is None:
145145
self.validate(value=self.value, name=self.name, schema=self.schema)
146146

147147
if self.is_enum and self.value:

0 commit comments

Comments
 (0)