Skip to content

Commit e11a3f9

Browse files
Merge branch 'main' into add-ruby-postgresql-quickstart
2 parents 6239518 + e3e3603 commit e11a3f9

3 files changed

Lines changed: 7 additions & 5 deletions

File tree

versioned_docs/version-3.0.0/keploy-cloud/time-freezing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ For Docker-based applications, you'll need to make a few adjustments to your Doc
5050
uname -a
5151
```
5252

53-
2. Download the the appropriate time freeze agent for your architecture & set the `LD_PRELOAD` Environment Variable in your Dockerfile
53+
2. Download the appropriate time freeze agent for your architecture & set the `LD_PRELOAD` Environment Variable in your Dockerfile
5454

5555
### For Golang(Go) Applications -
5656

57-
> Note: Time freezing is only supported till go **1.22.x** version.
57+
> Note: Time freezing works on every Go version that supports the `faketime` build tag, i.e. all currently supported Go releases. The mechanism is build-time (the `-tags=faketime` flag swaps Go's `time` package to read from a runtime agent file instead of the OS clock), so it's not tied to any specific Go version.
5858
5959
#### amd64/x86_64 🖥️
6060

versioned_docs/version-4.0.0/keploy-cloud/time-freezing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ For Docker-based applications, you'll need to make a few adjustments to your Doc
5151
uname -a
5252
```
5353

54-
2. Download the the appropriate time freeze agent for your architecture & set the `LD_PRELOAD` Environment Variable in your Dockerfile
54+
2. Download the appropriate time freeze agent for your architecture & set the `LD_PRELOAD` Environment Variable in your Dockerfile
5555

5656
### For Golang(Go) Applications -
5757

58-
> Note: Time freezing is only supported till go **1.22.x** version.
58+
> Note: Time freezing works on every Go version that supports the `faketime` build tag, i.e. all currently supported Go releases. The mechanism is build-time (the `-tags=faketime` flag swaps Go's `time` package to read from a runtime agent file instead of the OS clock), so it's not tied to any specific Go version.
5959
6060
#### amd64/x86_64 🖥️
6161

versioned_docs/version-4.0.0/quickstart/k8s-proxy-developer-workflow.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,12 @@ jobs:
193193
KEPLOY_API_KEY: ${{ secrets.KEPLOY_API_KEY }}
194194
run: |
195195
keploy cloud branch-merge \
196-
--app <app-id> \
196+
--app <namespace>.<deployment> \
197197
--branch ${{ github.head_ref }}
198198
```
199199

200+
`--app` accepts either a `namespace.deployment` identifier (k8s-proxy apps, e.g. `prod.orders`) or a raw app UUID (non-proxy apps). The same form you use for `keploy upload test-set` and `keploy cloud replay` works here.
201+
200202
`keploy cloud branch-merge` is idempotent—running it twice on an already-merged branch is a no-op. If the PR was closed without merging, the `if:` guard above keeps the job from firing.
201203

202204
---

0 commit comments

Comments
 (0)