The Azure function works fine as long as there is not much moch load. Under heavy load I get DryIOC timeouts time and time again. Not always.
How can I enlarge the timeout or where can I call this exception.TryGetDetails(container) as mentioned in the exception..

Read more

I have a parent and child class. The child is initialized and should inherit all parent init variables (vars set in ini()). The child has 2 class variables and I want to inherit through super(Parent). I want to inherit this way cause it looks neat; the class variables are explicitly listed at the start and dont have to be passed through as additional argument to the parent init method.
Making an instance of the child results in an object with the child class variables assigned as instance variables and the parent init variables are not present. Why arent the parent init variables present in the o..

Read more