opencadc / uws

client and server implementations of the Universal Worker Service (UWS) specification
GNU Affero General Public License v3.0
2 stars 8 forks source link

Force ownerID to be a string #32

Closed cbanek closed 5 years ago

cbanek commented 5 years ago

Using the postgres UWS backend, I noticed that the scanning of jobs would use an integer value of the ownerID rather than a string version, which is what the postgres column type is. This would throw a nasty exception about not being able to convert between varchar and int

Not exactly sure if this is right, or if there's something missing in my auth implementation, but with this small change, everything I have works.

cbanek commented 5 years ago

Sorry for the delay on these, last week was one of these all project all week meeting type things.

You're so right on the IdentityManager - since I forked from the ALMATapService, that was using the ACIdentityManager. Now I've moved that over to use the X500IdentityManager and it works without this hack! Thanks! Closing this out.