Index: trunk/psphot/src/psphotMakeGrowthCurve.c
===================================================================
--- trunk/psphot/src/psphotMakeGrowthCurve.c	(revision 41536)
+++ trunk/psphot/src/psphotMakeGrowthCurve.c	(revision 41537)
@@ -40,7 +40,8 @@
 	bool INTERPOLATE_AP = psMetadataLookupBool (&status, recipe, "INTERPOLATE_AP");
 	if (!pmGrowthCurveGenerateFromSources (readout, psf, sources, INTERPOLATE_AP, maskVal, markVal)) {
-	    psError(PSPHOT_ERR_APERTURE, false, "Fitting aperture corrections");
+	    // psError(PSPHOT_ERR_APERTURE, false, "Fitting aperture corrections");
+	    psWarning("Failed to measure the growth curve for aperture corrections (from sources)");
 	    psFree(psf->growth); psf->growth = NULL;
-	    return false;
+	    return true;
 	}
 
@@ -48,7 +49,8 @@
 	bool IGNORE_GROWTH = psMetadataLookupBool (&status, recipe, "IGNORE_GROWTH");
 	if (!pmGrowthCurveGenerate (readout, psf, IGNORE_GROWTH, maskVal, markVal)) {
-	    psError(PSPHOT_ERR_APERTURE, false, "Fitting aperture corrections");
+	    // psError(PSPHOT_ERR_APERTURE, false, "Fitting aperture corrections");
+	    psWarning("Failed to measure the growth curve for aperture corrections (from model)");
 	    psFree(psf->growth); psf->growth = NULL;
-	    return false;
+	    return true;
 	}
     }
