How to reproduce:
tag='1234567890123456789012345678901' #-> 31 characters
category = 'owner'
$evm.execute('tag_create', category, :name => tag, :description => "#{tag}")
The problem is on tag name (not with description).
On database, the tag value is “text” (large enough).
psql -d vmdb_production -U postgres -c "\d tags"
Table "public.tags"
Column | Type | Modifiers
--------+--------+---------------------------------------------------
id | bigint | not null default nextval('tags_id_seq'::regclass)
name | text |
Indexes:
"tags_pkey" PRIMARY KEY, btree (id)
Thanks!