Skip to content

Commit

Permalink
v0.2.21 - Fix issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
rramachand21-zz committed Apr 11, 2016
1 parent 509e413 commit 7db349e
Show file tree
Hide file tree
Showing 1,893 changed files with 199,258 additions and 13,509 deletions.
6 changes: 3 additions & 3 deletions src/iisnode/cmoduleconfiguration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -211,9 +211,9 @@ HRESULT CModuleConfiguration::CreateNodeEnvironment(IHttpContext* ctx, DWORD deb

if(dwPendingPipeInstancesLen <= 0)
{
ErrorIf((tmpSize - (tmpStart - tmpIndex) < 31), ERROR_NOT_ENOUGH_MEMORY);
sprintf(tmpIndex, "NODE_PENDING_PIPE_INSTANCES=50");
tmpIndex += 31;
ErrorIf((tmpSize - (tmpStart - tmpIndex) < 33), ERROR_NOT_ENOUGH_MEMORY);
sprintf(tmpIndex, "NODE_PENDING_PIPE_INSTANCES=5000");
tmpIndex += 33;
}

if(CModuleConfiguration::GetRecycleSignalEnabled(ctx) && signalPipeName != NULL)
Expand Down
Loading

0 comments on commit 7db349e

Please sign in to comment.