From 4a4c5f4978d82e289a199a6636af8f85d286d607 Mon Sep 17 00:00:00 2001 From: Doug Date: Fri, 16 Nov 2018 10:23:41 -0800 Subject: [PATCH] task(docs): Added note about node warning to C# Getting Started (#1196) * Added note about node warning in getting-started.rst --- 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..f4974f65838a4 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 warning similar to the following: + + .. 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