Fix wrong example of capabilities
Capabilities for storage is "storage:production_ready", but the sample of Capabilities for storage is only "production_ready", which cause wrong description in document, and misleading developers. Change-Id: I98da1908ca99d9a20e0cbf367b73275da09f9f82
This commit is contained in:
parent
6fde045959
commit
dc109e1ab0
@ -2591,9 +2591,12 @@ class Capabilities(_Base):
|
|||||||
'complex': True}}},
|
'complex': True}}},
|
||||||
'events': {'query': {'simple': True}},
|
'events': {'query': {'simple': True}},
|
||||||
}),
|
}),
|
||||||
storage=_flatten_capabilities({'production_ready': True}),
|
storage=_flatten_capabilities(
|
||||||
alarm_storage=_flatten_capabilities({'production_ready': True}),
|
{'storage': {'production_ready': True}}),
|
||||||
event_storage=_flatten_capabilities({'production_ready': True}),
|
alarm_storage=_flatten_capabilities(
|
||||||
|
{'storage': {'production_ready': True}}),
|
||||||
|
event_storage=_flatten_capabilities(
|
||||||
|
{'storage': {'production_ready': True}}),
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user