Jack Sundberg
09/09/2021, 7:00 PMclient.create_project(project_name="Hello, World!")
is_successful = client.delete_project(project_name="Hello, World!")
client.create_project(project_name="Hello, World!") # FAILS HERE
The second call to create_project fails with a ClientError due to a uniqueness violation -- but in raising that error, the client is unable to tell which existing project causes the uniqueness violation (bc I just deleted it).
Would anyone have insight as to what's going on here? I've tried sleeping between each line too so I don't think this is a race condition, but I'm not totally sure.Kevin Kho
Jack Sundberg
09/09/2021, 7:20 PMKevin Kho
Jack Sundberg
09/09/2021, 7:25 PMJack Sundberg
09/09/2021, 7:26 PMKevin Kho
Jack Sundberg
09/09/2021, 7:28 PMAlex Dancho
09/29/2021, 1:36 PMAlex Dancho
09/29/2021, 1:38 PMKevin Kho