Fresh install gets "Error setting up entry for hacs"
See original GitHub issueInstallation details
Description | Value |
---|---|
HACS version | 1.6.1 |
Home Assistant version | 0.116.4 |
Installation method for HA | virtualenv on a Mac |
Checklist
- I’m running the newest version of HACS https://github.com/hacs/integration/releases/latest
- I have enabled debug logging for my installation.
- I have filled out the issue template to the best of my ability.
- I have read https://hacs.xyz/docs/issues
- This issue is related to the backend of HACS.
- This issue only contains 1 issue (if you have multiple issues, open one issue for each issue).
Describe the issue
I did a fresh install of HACS on my HA install (moving the hacs folder to the custom_components folder). I waited for a while, because the docs told me to be patient. But i was greeted with a error in the logs. Now im not really sure how to proceed.
Steps to reproduce
Debug logs
Logs
2020-10-29 11:03:56 DEBUG (MainThread) [custom_components.hacs.repository.integration.hacs.integration] Running checks against 1.6.1
2020-10-29 11:03:56 DEBUG (MainThread) [custom_components.hacs.repository.integration.hacs.integration] All (0) checks passed
2020-10-29 11:03:56 INFO (MainThread) [custom_components.hacs.repository.integration.hacs.integration] Registration completed
2020-10-29 11:03:57 ERROR (MainThread) [homeassistant.config_entries] Error setting up entry for hacs
Traceback (most recent call last):
File "/Users/michaelschouman/Documents/homeassistant/lib/python3.8/site-packages/homeassistant/config_entries.py", line 231, in async_setup
result = await component.async_setup_entry(hass, self) # type: ignore
File "/Users/michaelschouman/.homeassistant/custom_components/hacs/__init__.py", line 30, in async_setup_entry
return await hacs_ui_setup(hass, config_entry)
File "/Users/michaelschouman/.homeassistant/custom_components/hacs/operational/setup.py", line 62, in async_setup_entry
return await async_startup_wrapper_for_config_entry()
File "/Users/michaelschouman/.homeassistant/custom_components/hacs/operational/setup.py", line 87, in async_startup_wrapper_for_config_entry
startup_result = await async_hacs_startup()
File "/Users/michaelschouman/.homeassistant/custom_components/hacs/operational/setup.py", line 188, in async_hacs_startup
async_call_later(hacs.hass, 5, hacs.startup_tasks())
TypeError: startup_tasks() missing 1 required positional argument: '_event'
Issue Analytics
- State:
- Created 3 years ago
- Comments:19 (4 by maintainers)
Top Results From Across the Web
HACS - Failed to set up - Third party integrations
Log entries I'm getting are as follows and I've no idea how to access the files, let alone how to resolve the listed...
Read more >Initial Configuration - HACS
Click the "+ ADD INTEGRATION" button in the bottom right corner. Open your Home Assistant instance and start setting up a new integration....
Read more >Last update broke my HACS integration : r/homeassistant
The Log show me '' Error setting up entry for hacs'' and ''Error doing job: Task exception was never retrieved'' a few min...
Read more >Home Assistant | My Hacs is not working anymore - Facebook
Error setting up entry for hacs ... Joshua Clark. I hate the spam, but it is amusing when we get people asking for...
Read more >My TOP 5 HACS components - integrations and front-end ...
Let me show you TOP 5 HACS components - that I like the most.It was very hard to create such a short list...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fixed in https://github.com/hacs/integration/releases/tag/1.6.2
Just need to append
=None
to the_event
arg forstartup_tasks
and release a new version. But I need time to do that and test it that something else does not break.