Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

task(docs): Added note about node warning to C# Getting Started #1196

Merged
merged 2 commits into from
Nov 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/src/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down