11 Oct 2024 01:03 PM
when adding a configuration to this v2 extension -> Error running self.initialize ExtensionImpl(name=nonauthhealtcheck, version=0.0.2)
Has anybody an idea ???
11 Oct 2024 11:35 PM
You don't show the initialize method or the activation schema file, but it seems like it is trying to access a "url" config that is not present
12 Oct 2024 12:20 AM
When creating a python extension in VS Code, the following code is automatically generated inside query():
for endpoint in self.activation_config["endpoints"]: url = endpoint["url"] user = endpoint["user"] password = endpoint["password"] self.logger.debug(f"Running endpoint with url '{url}'")
The error you are getting is probably because of the second line above. Please check if that is in your query() function.
16 Oct 2024 08:47 PM
Forgot to say if you don't have those properties [url,user,password] in your extension definition, you will have to take them out.
Besides that, the lines below line 100 seem to come from your v1 extensions. Those are also not supported that way in EF2...
If you haven't seen this video, you should take a look: https://www.youtube.com/watch?v=g-lPIZx66BA