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
The following is insufficient in the case of a Kerberos error under the hood:
kerberos.authGSSClientInit(uri, 0, function(err, ctx) {
if (err) {
operation.errorListener('kerberos initialization failed at '+uri);
}
operation.logger.debug('kerberos initialized at '+uri);
kerberos.authGSSClientStep(ctx, "", function (err) {
if (err) {
operation.errorListener('kerberos credentials failed');
}
Need to at least display the err object. This was apparent in #343 (comment) when I had to console.log() the authGSSClientStep err object to figure out what was going on.
The text was updated successfully, but these errors were encountered:
The following is insufficient in the case of a Kerberos error under the hood:
Need to at least display the err object. This was apparent in #343 (comment) when I had to console.log() the authGSSClientStep err object to figure out what was going on.
The text was updated successfully, but these errors were encountered: