Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Config flow could not be loaded: {"message":"Handler OptionsFlowManager doesn't support step init"}” #172

Open
perezrojose opened this issue Oct 15, 2024 · 0 comments

Comments

@perezrojose
Copy link

Hello,
I encountered this error when trying to update a newly added record. It generates the following error: “Config flow could not be loaded: {"message":"Handler OptionsFlowManager doesn't support step init"}.” When reviewing the "core.config_entries" file.
error Anniversaries

  {
    "created_at": "2024-10-15T03:25:26.657803+00:00",
    "data": {
      "unique_id": "61589ed5-ed2c-4083-a042-e45b32920bde",
      "name": "John Doe",
      "date": "1900-01-01",
      "count_up": false,
      "one_time": false,
      "show_half_anniversary": false,
      "unit_of_measurement": "Dias",
      "id_prefix": "cumple_",
      "icon_normal": "mdi:calendar-blank",
      "icon_today": "mdi:calendar-star",
      "days_as_soon": 1,
      "icon_soon": "mdi:calendar"
    },
    "discovery_keys": {},
    "disabled_by": null,
    "domain": "anniversaries",
    "entry_id": "01JA73B2R11RTVRTHTGRTGRTG7B29YR",
    "minor_version": 1,
    "modified_at": "2024-10-15T03:25:26.657814+00:00",
    "options": {},      ------------------------------------------------------------------------- error
    "pref_disable_new_entities": false,
    "pref_disable_polling": false,
    "source": "user",
    "title": "John Doe",",
    "unique_id": null,
    "version": 1
  }

Adding the data inside “options” makes the integration work correctly.

  {
    "created_at": "2024-10-15T03:25:26.657803+00:00",
    "data": {
      "unique_id": "61589ed5-ed2c-4083-a042-e45b32920bde",
      "name": "John Doe",
      "date": "1900-01-01",
      "count_up": false,
      "one_time": false,
      "show_half_anniversary": false,
      "unit_of_measurement": "Dias",
      "id_prefix": "cumple_",
      "icon_normal": "mdi:calendar-blank",
      "icon_today": "mdi:calendar-star",
      "days_as_soon": 1,
      "icon_soon": "mdi:calendar"
    },
    "discovery_keys": {},
    "disabled_by": null,
    "domain": "anniversaries",
    "entry_id": "01JA73B2R11RTVRTHTGRTGRTG7B29YR",
    "minor_version": 1,
    "modified_at": "2024-10-15T03:25:26.657814+00:00",
    "options": {
      "unique_id": "61589ed5-ed2c-4083-a042-e45b32920bde",
      "name": "John Doe",
      "date": "1900-01-01",
      "count_up": false,
      "one_time": false,
      "show_half_anniversary": false,
      "unit_of_measurement": "Dias",
      "id_prefix": "cumple_",
      "icon_normal": "mdi:calendar-blank",
      "icon_today": "mdi:calendar-star",
      "days_as_soon": 1,
      "icon_soon": "mdi:calendar"
    }
    "pref_disable_new_entities": false,
    "pref_disable_polling": false,
    "source": "user",
    "title": "John Doe",",
    "unique_id": null,
    "version": 1
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant