From: Tony Mack Date: Tue, 25 Feb 2014 20:24:55 +0000 (-0500) Subject: increase max slice_name length to 64 chars X-Git-Tag: plcapi-5.3-2~1 X-Git-Url: http://git.onelab.eu/?p=plcapi.git;a=commitdiff_plain;h=6ffdbf9ac330341884e1e6e171b6d22787f5e0da increase max slice_name length to 64 chars --- diff --git a/PLC/Slices.py b/PLC/Slices.py index db0cd05..93ec562 100644 --- a/PLC/Slices.py +++ b/PLC/Slices.py @@ -27,7 +27,7 @@ class Slice(Row): fields = { 'slice_id': Parameter(int, "Slice identifier"), 'site_id': Parameter(int, "Identifier of the site to which this slice belongs"), - 'name': Parameter(str, "Slice name", max = 32), + 'name': Parameter(str, "Slice name", max = 64), 'instantiation': Parameter(str, "Slice instantiation state"), 'url': Parameter(str, "URL further describing this slice", max = 254, nullok = True), 'description': Parameter(str, "Slice description", max = 2048, nullok = True),