Git Product home page Git Product logo

Comments (8)

jimmyca15 avatar jimmyca15 commented on June 15, 2024 3

The alternative is to use the snake casing there too, but it may look weird.

Agree, if anything it's just that we deprecate the .NET flag schema in a major version bump.

from featuremanagement-dotnet.

zhiyuanliang-ms avatar zhiyuanliang-ms commented on June 15, 2024

@zhenlan I assume you are using Microsoft Feature Flag schema. I don't know whether this is the reason, but I found you used "StatusOverride" instead of "status_override".

I think this is because .NET provider/ feature management lib cannot find the StatusOverride field.

from featuremanagement-dotnet.

zhiyuanliang-ms avatar zhiyuanliang-ms commented on June 15, 2024

@zhenlan I tested this on my side with the following feature flag configuration:

{
  "FeatureManagement": {
    "Greeting": {
      "Variants": [
        {
          "Name": "Off",
          "ConfigurationValue": "false",
          "StatusOverride": "Disabled"
        },
        {
          "Name": "On",
          "ConfigurationValue": "true",
          "StatusOverride": "Enabled"
        }
      ],
      "Allocation": {
        "Percentile": [
          {
            "Variant": "Off",
            "From": 0,
            "To": 80
          },
          {
            "Variant": "On",
            "From": 80,
            "To": 100
          }
        ],
        "DefaultWhenEnabled": "Off",
        "DefaultWhenDisabled": "Off"
      },
      "EnabledFor": [
        {
          "Name": "AlwaysOn"
        }
      ]
    }
  }
}

and

{
  "feature_management": {
    "feature_flags": [
      {
        "id": "Greeting",
        "description": "",
        "enabled": true,
        "variants": [
          {
            "name": "Off",
            "configuration_value": "false",
            "status_override": "Disabled"
          },
          {
            "name": "On",
            "configuration_value": "true",
            "status_override": "Enabled"
          }
        ],
        "allocation": {
          "percentile": [
            {
              "variant": "Off",
              "from": 0,
              "to": 80
            },
            {
              "variant": "On",
              "from": 80,
              "to": 100
            }
          ],
          "default_when_enabled": "Off",
          "default_when_disabled": "Off"
        },
        "telemetry": {
          "enabled": true
        }
      }
    ]
  }
}

Both gave me false for showGreeting2.

from featuremanagement-dotnet.

zhenlan avatar zhenlan commented on June 15, 2024

@zhenlan I assume you are using Microsoft Feature Flag schema. I don't know whether this is the reason, but I found you used "StatusOverride" instead of "status_override

No, I loaded the feature flag from AppConfig. But you are right, this does the trick.

This is so confusing. Maybe we should rethink the support for Pascal casing of new properties in .NET.

from featuremanagement-dotnet.

jimmyca15 avatar jimmyca15 commented on June 15, 2024

Maybe we should rethink the support for Pascal casing of new properties in .NET.

Do you mean to consider no longer adding new properties to the .NET feature flag schema?

from featuremanagement-dotnet.

zhenlan avatar zhenlan commented on June 15, 2024

Maybe we should rethink the support for Pascal casing of new properties in .NET.

Do you mean to consider no longer adding new properties to the .NET feature flag schema?

Correct. The alternative is to use the snake casing there too, but it may look weird.

from featuremanagement-dotnet.

zhenlan avatar zhenlan commented on June 15, 2024

@zhiyuanliang-ms if we reached consensus that we will not support new properties in the old schema, we should open a new issue (given this one is closed) to clean them up.

from featuremanagement-dotnet.

zhiyuanliang-ms avatar zhiyuanliang-ms commented on June 15, 2024

@zhenlan Agree.

from featuremanagement-dotnet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.