Commit 89562bce authored by Kirill Smelkov's avatar Kirill Smelkov

X json: Move inactivity_timer to cell from enb

parent af7e946d
...@@ -53,6 +53,12 @@ ...@@ -53,6 +53,12 @@
"type": "integer", "type": "integer",
"default": 204 "default": 204
}, },
"inactivity_timer": {
"title": "Inactivity Timer",
"description": "Send RRC connection release after this time (in ms) of network inactivity.",
"type": "number",
"default": 10000
},
"ru": { "ru": {
"$ref": "#/$defs/ru-of-cell", "$ref": "#/$defs/ru-of-cell",
"propertyOrder": 9999 "propertyOrder": 9999
......
...@@ -151,12 +151,6 @@ ...@@ -151,12 +151,6 @@
"description": "Activates websocket for remote control and sets password", "description": "Activates websocket for remote control and sets password",
"type": "string" "type": "string"
}, },
"inactivity_timer": {
"title": "Inactivity Timer XXX",
"description": "Send RRC connection release after this time (in ms) of network inactivity.",
"type": "number",
"default": 10000
},
"log_phy_debug": { "log_phy_debug": {
"title": "Physical layer log debug", "title": "Physical layer log debug",
"description": "Enable debug mode for physical layer logs", "description": "Enable debug mode for physical layer logs",
......
...@@ -152,9 +152,7 @@ ...@@ -152,9 +152,7 @@
"$ref": "instance-enb-input-schema.json#/properties/websocket_password" "$ref": "instance-enb-input-schema.json#/properties/websocket_password"
}, },
"inactivity_timer": { "inactivity_timer": {
"title": "Inactivity Timer", "$ref": "cell/common.json#/properties/inactivity_timer",
"description": "Send RRC connection release after this time (in ms) of network inactivity.",
"type": "number",
"default": 10000 "default": 10000
}, },
"log_phy_debug": { "log_phy_debug": {
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
it should be kept in sync with "default" in json schemas it should be kept in sync with "default" in json schemas
TODO automatically load defaults from JSON schemas #} TODO automatically load defaults from JSON schemas #}
{#- XXX add inactivity timer to cell schemas #}
{%- set defaults = { {%- set defaults = {
'ru': { 'ru': {
'txrx_active': 'INACTIVE', 'txrx_active': 'INACTIVE',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment