You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Distinguishes the LocalStack endpoint mock (cmd/ls-mock, bin/ls-mock)
from the internal/lsapi package introduced in the previous commit.
Updates all references: Makefile, smoke-test.sh, CI workflow, README,
.gitignore, and test comments.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README-LOCALSTACK.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,8 @@ Refer to [debugging/README.md](./debugging/README.md) for instructions on how to
18
18
|`cmd/localstack`| LocalStack customizations |
19
19
| ├── `main.go`| Main entrypoint |
20
20
| ├── `custom_interop.go`| Custom server interface between the Lambda runtime API and this Go init. Implements the `Server` interface from `lambda/interop/model.go:Server` but forwards most calls to the original implementation in `lambda/rapidcore/server.go` available as `delegate`. |
21
-
|`cmd/ls-api`| Mock LocalStack component for smoke testing |
22
-
| ├── [`README.md`](./cmd/ls-api/README.md)| Instructions for LS API<->RIE smoke testing |
21
+
|`cmd/ls-mock`| Mock LocalStack component for smoke testing |
22
+
| ├── [`README.md`](./cmd/ls-mock/README.md)| Instructions for LS API<->RIE smoke testing |
23
23
|`debugging/`| Debug and test this Go init with LocalStack |
24
24
| ├── [`README.md`](./debugging/README.md)| Instructions for building and debugging with LocalStack |
25
25
|`lambda`| Original AWS implementation of the runtime emulator ideally kept untouched |
@@ -43,6 +43,6 @@ Example PR that integrates upstream changes: https://github.com/localstack/lambd
43
43
44
44
Document all custom changes with the following comment prefix `# LOCALSTACK CHANGES yyyy-mm-dd:`
45
45
46
-
* Everything in `cmd/localstack`, `cmd/ls-api`, and `.github`
46
+
* Everything in `cmd/localstack`, `cmd/ls-mock`, and `.github`
47
47
*`Makefile` for debugging and building with Docker
48
48
* 2023-10-17: `lambda/rapidcore/server.go` pass request metadata into .Reserve(invoke.ID, invoke.TraceID, invoke.LambdaSegmentID)
0 commit comments