You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously, if a consumer didn't have any plugins associated with it,
the output YAML would be:
```yaml
consumers:
- username: harry
plugins: []
```
The `plugins` can be skipped to make the output file more concise.
This commits skips writing out entities which are empty:
```yaml
consumers:
- username: harry
```
0 commit comments