diff --git a/awxkit/awxkit/api/pages/projects.py b/awxkit/awxkit/api/pages/projects.py index fab50bccfe..31808e891f 100644 --- a/awxkit/awxkit/api/pages/projects.py +++ b/awxkit/awxkit/api/pages/projects.py @@ -112,7 +112,8 @@ class Project(HasCopy, HasCreate, HasNotifications, UnifiedJobTemplate): self.update_identity(Projects(self.connection).post(payload)) if kwargs.get('wait', True): - self.related.current_update.get().wait_until_completed() + update = self.related.current_update.get() + update.wait_until_completed().assert_successful() return self.get() return self