Adding debug for _CDB_Group_API_Auth
This commit is contained in:
parent
39c071f790
commit
b9615a912f
@ -201,10 +201,13 @@ $$
|
||||
import base64
|
||||
|
||||
data_to_encode = '%s:%s' % (username, password)
|
||||
plpy.warning('DEBUG: _CDB_Group_API_Auth python v' + str(sys.version_info[0]))
|
||||
if sys.version_info[0] < 3:
|
||||
data_encoded = base64.encodestring(data_to_encode)
|
||||
else:
|
||||
plpy.warning('DEBUG: _CDB_Group_API_Auth entra')
|
||||
data_encoded = base64.b64encode(data_to_encode.encode()).decode()
|
||||
plpy.warning('DEBUG: _CDB_Group_API_Auth sale')
|
||||
|
||||
data_encoded = data_encoded.replace('\n', '')
|
||||
return data_encoded
|
||||
|
Loading…
Reference in New Issue
Block a user