Skip to content

Commit

Permalink
Merge pull request #324 from whdalsrnt/master
Browse files Browse the repository at this point in the history
fix: change max length of metric_id
  • Loading branch information
whdalsrnt authored May 22, 2024
2 parents 4a6d8d1 + a808710 commit 71412f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spaceone/inventory/model/metric_data/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


class MetricData(MongoModel):
metric_id = StringField(max_length=40)
metric_id = StringField(max_length=80)
status = StringField(
max_length=20, default="IN_PROGRESS", choices=["IN_PROGRESS", "DONE"]
)
Expand Down

0 comments on commit 71412f3

Please sign in to comment.