Move daily emails into the blog page

This commit is contained in:
Oliver Davies 2025-08-21 00:28:10 +01:00
parent be69398931
commit 1b8441608f
828 changed files with 9 additions and 196 deletions

View file

@ -0,0 +1,15 @@
---
title: >
How do you know when to remove a feature flag?
pubDate: 2023-06-10
permalink: >-
daily/2023/06/10/how-do-you-know-when-to-remove-a-feature-flag
tags:
- feature-flags
---
But once a feature has been enabled, how do you know if you can remove its flag?
A simple suggestion I've heard is to add a "Remove when..." comment above where the flag is used and detail what conditions need to be in place before the flag can be removed.
It might be a period of time or after another feature has been shipped, but it will give some clarity when you see the flag in the code to if or when it can be removed.