I developed a notebook a while back that will intake a similar csv to what "invite members with file" uses when you create a bunch of usernames at once, however I added onto this to automatically add the usernames to the proper groups based on their roles and assign licenses accordingly. It use to work like a charm, but now I have to have it run with a few thousand logins pretty soon (switching hub orgs) and ran into an issue where it will only create 3 logins and then fails on every other when there is no apparent change in the way the logins are set up. Below are some screenshots of the username creation part of the script that fails, the output, and the CSV being used. Has there been a recent change that I am not aware of, causing these problems? Or is there something in my code that is causing it?
Script that creates the logins:
Error occurring (notice it only makes 3 logins, then the rest fail)
CSV being used
Solved! Go to Solution.
Ended up finding a solution to my own problem. I was using Python 11 in Notebooks when the original script was written in Python 10. Switching it to Python 10 in the Notebook's settings and re-running it fixed the problem
Ended up finding a solution to my own problem. I was using Python 11 in Notebooks when the original script was written in Python 10. Switching it to Python 10 in the Notebook's settings and re-running it fixed the problem