-
Notifications
You must be signed in to change notification settings - Fork 13
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
ugly exception during initial installation #109
Comments
my analysis: we are using the $ec = LC::Exception::Context->new->will_store_errors that are sprinkled over all our modules actually initiate a new context for each module. we could track all the exceptions using private variable ( i propose to add a function to This function would be a combination of i would also add a function to scan all active exceptions and check if any of them has an error, and return that error. will this cause problems: probably. as there is only one context, any code currently resetting the previously local one, will now reset the global one. that why the second function might be handy. example: dump of all active contexts for the reported issue:
|
one case where a global EC won't work: in ComponentProxy, each component package is checked for their own EC, and it's a possible different one than the one from component proxy itself. |
Consensus is to get rid of |
AII postinstall output
does not really look like an issue, but is ugly nonetheless
The text was updated successfully, but these errors were encountered: