File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -122,13 +122,11 @@ export async function buildSite(flags: Partial<BuildFlags> = {}): Promise<{
122122 const { severity } = await handleBuildError ( error , errorParams as any )
123123 const { pluginsOptions, siteInfo, userNodeVersion } : any = errorParams
124124 const { success, severityCode, status } = getSeverity ( severity )
125-
126125 span . setAttributes ( {
127126 'build.execution.success' : success ,
128127 'build.execution.code' : severityCode ,
129128 'build.execution.status' : status ,
130129 } )
131-
132130 await telemetryReport ( {
133131 buildId,
134132 deployId,
@@ -141,7 +139,6 @@ export async function buildSite(flags: Partial<BuildFlags> = {}): Promise<{
141139 testOpts,
142140 errorParams,
143141 } )
144-
145142 await reportError ( error , statsdOpts , framework )
146143
147144 return { success, severityCode, logs }
Original file line number Diff line number Diff line change @@ -206,7 +206,7 @@ const pluginDataToTracingAttributes = function (pluginInfo?: PluginInfo): Attrib
206206 if ( typeof pluginInfo === 'undefined' ) return { }
207207
208208 const pluginName = pluginInfo ?. packageName ? normalizeTagName ( pluginInfo ?. packageName ) : null
209- const isNetlifyMaintained = pluginName && isNetlifyMaintainedPlugin ( pluginName ) ? '1' : '0'
209+ const isNetlifyMaintained = ! ! ( pluginName && isNetlifyMaintainedPlugin ( pluginName ) )
210210
211211 return {
212212 [ `${ pluginAttributePrefix } .name` ] : pluginInfo ?. packageName ,
Original file line number Diff line number Diff line change @@ -28,8 +28,6 @@ const NETLIFY_MAINTAINED_EXTENSIONS = new Set([
2828 'sfcc_content_buildhooks' ,
2929 'commercetools_content_buildhooks' ,
3030 'optimizely_edge_delivery_buildhooks' ,
31- // TODO REMOVE THIS
32- 'a9jefvgl_fail_build_extension_buildhooks' ,
3331] )
3432
3533export const isNetlifyMaintainedPlugin = ( pluginPackage : string ) : boolean =>
You can’t perform that action at this time.
0 commit comments