Skip to content

Commit 7db349e

Browse files
v0.2.21 - Fix issues.
1 parent 509e413 commit 7db349e

1,893 files changed

Lines changed: 199258 additions & 13509 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/iisnode/cmoduleconfiguration.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,9 @@ HRESULT CModuleConfiguration::CreateNodeEnvironment(IHttpContext* ctx, DWORD deb
211211

212212
if(dwPendingPipeInstancesLen <= 0)
213213
{
214-
ErrorIf((tmpSize - (tmpStart - tmpIndex) < 31), ERROR_NOT_ENOUGH_MEMORY);
215-
sprintf(tmpIndex, "NODE_PENDING_PIPE_INSTANCES=50");
216-
tmpIndex += 31;
214+
ErrorIf((tmpSize - (tmpStart - tmpIndex) < 33), ERROR_NOT_ENOUGH_MEMORY);
215+
sprintf(tmpIndex, "NODE_PENDING_PIPE_INSTANCES=5000");
216+
tmpIndex += 33;
217217
}
218218

219219
if(CModuleConfiguration::GetRecycleSignalEnabled(ctx) && signalPipeName != NULL)

0 commit comments

Comments
 (0)