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
I am using it so that our users could be periodically synced in auth0, like so:
file=Tempfile.new("users-to-copy-to-auth0")users=[]# I get users from the dbbeginfile.write(users.to_s)puts"before"@@auth0.import_users(file,"Username-Password-Authentication")puts"after"ensurefile.closefile.unlinkend
"after" never gets printed, instead I get EOFError: end of file reached after approx 1min, even though the file is just 4.5kb, so it looks like a timeout.
I have to say I'm not a ruby dev, I've just picked up a task that has to be done, this to say that I might be doing something really stupid.
Thanks for any help / hint.
The text was updated successfully, but these errors were encountered:
Hello, thanks for this library!
I am using it so that our users could be periodically synced in auth0, like so:
"after"
never gets printed, instead I getEOFError: end of file reached
after approx 1min, even though the file is just 4.5kb, so it looks like a timeout.I have to say I'm not a ruby dev, I've just picked up a task that has to be done, this to say that I might be doing something really stupid.
Thanks for any help / hint.
The text was updated successfully, but these errors were encountered: