Skip to content

Commit 78093ed

Browse files
authored
fix(apple-silicon): fix return code delete (#2933)
1 parent a169bdb commit 78093ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/services/applesilicon/server.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ func ResourceAppleSiliconServerDelete(ctx context.Context, d *schema.ResourceDat
317317
ServerID: ID,
318318
}, scw.WithContext(ctx))
319319

320-
if err != nil && !httperrors.Is404(err) {
320+
if err != nil && !httperrors.Is403(err) {
321321
return diag.FromErr(err)
322322
}
323323

0 commit comments

Comments
 (0)