File tree 1 file changed +9
-2
lines changed
src/pubtools/pulplib/_impl/model/repository
1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,16 @@ class YumRepository(Repository):
92
92
type = list ,
93
93
converter = frozenlist ,
94
94
pulp_field = "notes.population_sources" ,
95
+ mutable = True ,
95
96
)
96
97
"""List of repository IDs used to populate this repository
97
98
"""
98
99
99
100
ubi_population = pulp_attrib (
100
- default = False , type = bool , pulp_field = "notes.ubi_population"
101
+ default = False ,
102
+ type = bool ,
103
+ pulp_field = "notes.ubi_population" ,
104
+ mutable = True ,
101
105
)
102
106
"""Flag indicating whether repo should be populated from population_sources for the purposes of UBI
103
107
"""
@@ -109,7 +113,10 @@ class YumRepository(Repository):
109
113
)
110
114
111
115
ubi_config_version = pulp_attrib (
112
- default = None , type = str , pulp_field = "notes.ubi_config_version"
116
+ default = None ,
117
+ type = str ,
118
+ pulp_field = "notes.ubi_config_version" ,
119
+ mutable = True ,
113
120
)
114
121
"""Version of UBI config that should be used for population of this repository."""
115
122
You can’t perform that action at this time.
0 commit comments