Skip to content

Commit 544f6e1

Browse files
debug commit
1 parent 6331dc8 commit 544f6e1

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,9 @@ jobs:
7373
- name: Download and verify dependencies
7474
run: make deps
7575

76+
- name: Setup tmate session
77+
uses: mxschmitt/action-tmate@v3
78+
7679
- name: Run unit tests
7780
run: make unit-test
7881

cli/cli.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ func Run(ctx context.Context, config Config, args []string) error {
122122
return err
123123
}
124124
log.Printf("successfully run %s: %s", bin, "output")
125+
125126
return nil
126127

127128
//log.Printf("bin: %v, args: %v\n", bin, args)

e2e_tests/boundary_integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func TestBoundaryIntegration(t *testing.T) {
133133
"--allow", "jsonplaceholder.typicode.com",
134134
"--log-level", "debug",
135135
//"--", "/bin/bash")
136-
"--", "/bin/bash", "-c", "/usr/bin/sleep 45 && /usr/bin/echo 'Test completed'")
136+
"--", "/bin/bash", "-c", "/usr/bin/sleep 20 && /usr/bin/echo 'Test completed'")
137137

138138
boundaryCmd.Stdin = os.Stdin
139139
boundaryCmd.Stdout = os.Stdout

0 commit comments

Comments
 (0)