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
def extend_batch_buffer(token, client_id)
if self.tokens[client_id] != nil
self.tokens[client_id]['updated_at'] = Time.now
end
return build_auth_header(token, client_id)
end
Problem is, sometimes the tokens do not have the matching client_id which is from the request, and fails with undefined method []=' for nil:NilClass`
I will submit a PR which is a simple fix. See resolve #882
The text was updated successfully, but these errors were encountered:
I have this error when i am doing batch request:
The offending code is in user.rb line 218
Problem is, sometimes the tokens do not have the matching client_id which is from the request, and fails with
undefined method
[]=' for nil:NilClass`I will submit a PR which is a simple fix. See resolve #882
The text was updated successfully, but these errors were encountered: