shawnallen85 commented on issue #28: "Cannot invoke an uninitialized action." 
error occurs intermittently
URL: 
https://github.com/apache/openwhisk-runtime-dotnet/issues/28#issuecomment-565542085
 
 
   Alrighty -- I finally got to reviewing this. The only change I believe that 
needs to happen is in Startup.cs for both 2.2 and 3.0.
   
   We need to check if run is null before returning the ok.
   ~ line 43
                       if (httpContext.Request.Path.Equals(initPath))
                       {
                           run = await init.HandleRequest(httpContext);
                           if(run != null)
                               await httpContext.Response.WriteResponse(200, 
"OK");
                           return;
                       }
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to