Skip to content

Commit 88ed903

Browse files
authored
fix: Return error from create app project (#519)
Signed-off-by: navin <[email protected]>
1 parent 1e0ab7e commit 88ed903

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/manager/appproject/appproject.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ func createAppProject(ctx context.Context, m *AppProjectManager, project *v1alph
160160
}
161161
return created, nil
162162
}
163-
return nil, nil
163+
return nil, err
164164
}
165165

166166
func (m *AppProjectManager) Get(ctx context.Context, name, namespace string) (*v1alpha1.AppProject, error) {

0 commit comments

Comments
 (0)