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

chore: Clarify note about code building on sam local start-api #4423

Merged
merged 6 commits into from Nov 18, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions samcli/commands/local/lib/local_api_service.py
Expand Up @@ -72,8 +72,9 @@ def start(self):
LOG.info(
"You can now browse to the above endpoints to invoke your functions. "
"You do not need to restart/reload SAM CLI while working on your functions, "
"changes will be reflected instantly/automatically. You only need to restart "
"SAM CLI if you update your AWS SAM template"
"changes will be reflected instantly/automatically. If you used sam build before "
"running local commands, you will need to re-run sam build for the changes "
"to be picked up. You only need to restart SAM CLI if you update your AWS SAM template"
)

service.run()
Expand Down