build.settings   A
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 17
ccs 5
cts 5
cp 1
rs 10
c 0
b 0
f 0
1
"""Settings for the mef_eline NApp."""
2
3
# Base URL of the Pathfinder endpoint
4 1
PATHFINDER_URL = 'http://localhost:8181/api/kytos/pathfinder/v2/'
5
6
# Base URL of the Flow Manager endpoint
7 1
MANAGER_URL = 'http://localhost:8181/api/kytos/flow_manager/v2'
8
9
# Base URL of the Pathfinder endpoint
10 1
TOPOLOGY_URL = 'http://localhost:8181/api/kytos/topology/v3'
11
12
# EVC consistency interval
13 1
DEPLOY_EVCS_INTERVAL = 60
14
15
# Prefix this NApp has when using cookies
16
COOKIE_PREFIX = 0xaa
17