You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.
this error might have been caused due to trying to insert same values into the table again(by re-running make) hence violating some primary-key constraints. It would still help to catch these and die during the make process.
Errors like
DBD::Pg::st execute failed: ERROR: duplicate key value violates unique constraint "group_pkey"
DETAIL: Key (id)=(1) already exists. at /opt/gms/UMBIU92/sw/ur/lib/UR/DBI.pm line 888.
ERROR: Genome::DataSource::GMSchema: Error executing SQL:
INSERT INTO disk.group (unix_uid,unix_gid,subdirectory,permissions,name,id) VALUES (?,?,?,?,?,?)
PARAMS: '2001', '2001', 'info', '775', 'reads', '1'
ERROR: duplicate key value violates unique constraint "group_pkey"
DETAIL: Key (id)=(1) already exists.
ERROR: Failed to sync data source: Genome::DataSource::GMSchema: Genome::DataSource::GMSchema: Error executing SQL:
INSERT INTO disk.group (unix_uid,unix_gid,subdirectory,permissions,name,id) VALUES (?,?,?,?,?,?)
PARAMS: '2001', '2001', 'info', '775', 'reads', '1'
ERROR: duplicate key value violates unique constraint "group_pkey"
DETAIL: Key (id)=(1) already exists.
slip through the install process. We need to catch these errors.
The text was updated successfully, but these errors were encountered: