From 4f9a2d144126e6b3dedcd2c99ce5eea3d8555e6c Mon Sep 17 00:00:00 2001 From: Doug-AWS Date: Fri, 16 Nov 2018 10:04:17 -0800 Subject: [PATCH 1/2] Added note about node:27508 warning --- docs/src/getting-started.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/docs/src/getting-started.rst b/docs/src/getting-started.rst index e423350f3e820..634374f8f8e87 100644 --- a/docs/src/getting-started.rst +++ b/docs/src/getting-started.rst @@ -514,6 +514,22 @@ The result is an empty array: An empty array makes sense, since our app doesn't have any stacks. +.. note:: + + There is a known issue on Windows with the |cdk| .NET environment. + Whenever you use a **cdk** command, + it issues a node:27508 warning: + + .. code-block:: sh + + (node:27508) UnhandledPromiseRejectionWarning: Unhandled promise rejection + (rejection id: 1): Error: EPIPE: broken pipe, write + (node:27508) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. + In the future, promise rejections that are not handled will terminate the + Node.js process with a non-zero exit code. + + You can safely ignore this warning. + .. _define_stack: Define a Stack From b9e839f1751bf6bdf451118fa743ef5835819964 Mon Sep 17 00:00:00 2001 From: Doug Date: Fri, 16 Nov 2018 10:15:14 -0800 Subject: [PATCH 2/2] Update getting-started.rst Remove blurb about specific node number. --- docs/src/getting-started.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/getting-started.rst b/docs/src/getting-started.rst index 634374f8f8e87..f4974f65838a4 100644 --- a/docs/src/getting-started.rst +++ b/docs/src/getting-started.rst @@ -518,7 +518,7 @@ An empty array makes sense, since our app doesn't have any stacks. There is a known issue on Windows with the |cdk| .NET environment. Whenever you use a **cdk** command, - it issues a node:27508 warning: + it issues a node warning similar to the following: .. code-block:: sh