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 Sep 14, 2019. It is now read-only.
it's not possible to list active investigators without querying the database
it's not possible to update the pgp key. This is currently needed because of [mig client] Add support for GNUPG 2.1 #190, as everybody is generating a mig specific keypair as a workaround.
Especially the fact that the publickey can not be edited was a painful experience since my python script that generated the postgres query for bytea had a bug and inserted an invalid key which locked out everybody.
I'm currently deleting investigators using SQL and then recreate them using mig-console.
>>> "E'\\x" + (''.join([hex(ord(x))[2:].zfill(2) for x in k])) + "'"
mig=# update investigators set publickey = E'\x2d2d2d2d2dSNIP2d2d2d2d2d0a', pgpfingerprint = '5A8XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXDF' where id = 4;
UPDATE 1
mig=#
The text was updated successfully, but these errors were encountered:
I noticed the following features are missing:
Especially the fact that the publickey can not be edited was a painful experience since my python script that generated the postgres query for
bytea
had a bug and inserted an invalid key which locked out everybody.I'm currently deleting investigators using SQL and then recreate them using mig-console.
The text was updated successfully, but these errors were encountered: