File tree Expand file tree Collapse file tree 19 files changed +45
-92
lines changed
replay-debug-ide-integrated Expand file tree Collapse file tree 19 files changed +45
-92
lines changed Original file line number Diff line number Diff line change @@ -225,4 +225,5 @@ npm-debug.log
225225.env
226226js-debug
227227_JETBRAINS_PLUGIN_README.md
228- _VSCODE_EXTENSION_README.md
228+ _VSCODE_EXTENSION_README.md
229+ .log *
Original file line number Diff line number Diff line change @@ -6,10 +6,8 @@ toolchain go1.23.11
66
77require (
88 go.temporal.io/sdk v1.35.0
9- replayer_adapter_go v0.0.0-00010101000000-000000000000
109)
1110
12- replace replayer_adapter_go => /Users/duyphuongnguyen/GolandProjects/temporal-goland-plugin/replayer-adapter-go
1311
1412require (
1513 github.com/davecgh/go-spew v1.1.1 // indirect
@@ -20,6 +18,7 @@ require (
2018 github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
2119 github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
2220 github.com/nexus-rpc/sdk-go v0.3.0 // indirect
21+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 // indirect
2322 github.com/pmezard/go-difflib v1.0.0 // indirect
2423 github.com/robfig/cron v1.2.0 // indirect
2524 github.com/stretchr/objx v0.5.2 // indirect
Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
4949github.com/nexus-rpc/sdk-go v0.3.0 h1:Y3B0kLYbMhd4C2u00kcYajvmOrfozEtTV/nHSnV57jA =
5050github.com/nexus-rpc/sdk-go v0.3.0 /go.mod h1:TpfkM2Cw0Rlk9drGkoiSMpFqflKTiQLWUNyKJjF8mKQ =
5151github.com/opentracing/opentracing-go v1.1.0 /go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o =
52+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 h1:Ft08V/ou06WGMUNrNIc/NECwjehR/1Nvu3awnIXqkBE =
53+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 /go.mod h1:gyRBl1MlJuUQqrM2fwQA/ndh7XZ7HU19Hd6YbK3tf0o =
5254github.com/pkg/errors v0.8.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
5355github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
5456github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package main
33import (
44 "go.temporal.io/sdk/worker"
55
6- "replayer_adapter_go "
6+ "github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go "
77)
88
99func main () {
Original file line number Diff line number Diff line change @@ -2,14 +2,12 @@ module replay_debug_ide_integrated
22
33go 1.23.11
44
5- replace replayer_adapter_go => /Users/duyphuongnguyen/GolandProjects/temporal-goland-plugin/replayer-adapter-go
65
76replace example => ../workflow-code/
87
98require (
109 example v0.0.0-00010101000000-000000000000
1110 go.temporal.io/sdk v1.35.0
12- replayer_adapter_go v0.0.0-00010101000000-000000000000
1311)
1412
1513require (
@@ -21,6 +19,7 @@ require (
2119 github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
2220 github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
2321 github.com/nexus-rpc/sdk-go v0.3.0 // indirect
22+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 // indirect
2423 github.com/pmezard/go-difflib v1.0.0 // indirect
2524 github.com/robfig/cron v1.2.0 // indirect
2625 github.com/stretchr/objx v0.5.2 // indirect
Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
4949github.com/nexus-rpc/sdk-go v0.3.0 h1:Y3B0kLYbMhd4C2u00kcYajvmOrfozEtTV/nHSnV57jA =
5050github.com/nexus-rpc/sdk-go v0.3.0 /go.mod h1:TpfkM2Cw0Rlk9drGkoiSMpFqflKTiQLWUNyKJjF8mKQ =
5151github.com/opentracing/opentracing-go v1.1.0 /go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o =
52+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 h1:Ft08V/ou06WGMUNrNIc/NECwjehR/1Nvu3awnIXqkBE =
53+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 /go.mod h1:gyRBl1MlJuUQqrM2fwQA/ndh7XZ7HU19Hd6YbK3tf0o =
5254github.com/pkg/errors v0.8.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
5355github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
5456github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ package main
33import (
44 "go.temporal.io/sdk/worker"
55
6+ "github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go"
7+
68 "example/pkg/workflows"
7- "replayer_adapter_go"
89)
910
1011func main () {
Original file line number Diff line number Diff line change @@ -4,14 +4,12 @@ go 1.23.0
44
55toolchain go1.23.11
66
7- replace replayer_adapter_go => /Users/duyphuongnguyen/GolandProjects/temporal-goland-plugin/replayer-adapter-go
87
98replace example => ../workflow-code/
109
1110require (
1211 example v0.0.0-00010101000000-000000000000
1312 go.temporal.io/sdk v1.35.0
14- replayer_adapter_go v0.0.0-00010101000000-000000000000
1513)
1614
1715require (
@@ -23,6 +21,7 @@ require (
2321 github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
2422 github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
2523 github.com/nexus-rpc/sdk-go v0.3.0 // indirect
24+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 // indirect
2625 github.com/pmezard/go-difflib v1.0.0 // indirect
2726 github.com/robfig/cron v1.2.0 // indirect
2827 github.com/stretchr/objx v0.5.2 // indirect
Original file line number Diff line number Diff line change @@ -49,6 +49,8 @@ github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
4949github.com/nexus-rpc/sdk-go v0.3.0 h1:Y3B0kLYbMhd4C2u00kcYajvmOrfozEtTV/nHSnV57jA =
5050github.com/nexus-rpc/sdk-go v0.3.0 /go.mod h1:TpfkM2Cw0Rlk9drGkoiSMpFqflKTiQLWUNyKJjF8mKQ =
5151github.com/opentracing/opentracing-go v1.1.0 /go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o =
52+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 h1:Ft08V/ou06WGMUNrNIc/NECwjehR/1Nvu3awnIXqkBE =
53+ github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go v0.0.0-20250807111630-9bea48215350 /go.mod h1:gyRBl1MlJuUQqrM2fwQA/ndh7XZ7HU19Hd6YbK3tf0o =
5254github.com/pkg/errors v0.8.1 /go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0 =
5355github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM =
5456github.com/pmezard/go-difflib v1.0.0 /go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4 =
Original file line number Diff line number Diff line change @@ -3,8 +3,9 @@ package main
33import (
44 "go.temporal.io/sdk/worker"
55
6+ "github.com/phuongdnguyen/temporal-workflow-debugger/replayer-adapter-go"
7+
68 "example/pkg/workflows"
7- "replayer_adapter_go"
89)
910
1011func main () {
You can’t perform that action at this time.
0 commit comments