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
When you register a Higlass file via /api/v/link_tile, the uuid is a byte string instead of an encoded string. In Python 3, it turns the uuid into an encoded string "b'<tileset_info>'", including the b''
When you register a Higlass file via
/api/v/link_tile
, the uuid is a byte string instead of an encoded string. In Python 3, it turns the uuid into an encoded string"b'<tileset_info>'"
, including theb''
I send this payload
The server returns
{'uuid': "b'Cr1CSDnZSEqMW-Q2lM01Mw'"}
The uuid should be encoded to match the JSON response.
The text was updated successfully, but these errors were encountered: