Skip to content

Commit

Permalink
fix: SSH tunnel timeout and memory leaks
Browse files Browse the repository at this point in the history
  • Loading branch information
dogukanoksuz committed Oct 6, 2023
1 parent d8d4c6c commit f0b43db
Show file tree
Hide file tree
Showing 4 changed files with 152 additions and 144 deletions.
36 changes: 18 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ module github.com/limanmys/render-engine
go 1.19

require (
github.com/Nerzal/gocloak/v13 v13.7.0
github.com/go-resty/resty/v2 v2.7.0
github.com/gofiber/fiber/v2 v2.46.0
github.com/Nerzal/gocloak/v13 v13.8.0
github.com/go-resty/resty/v2 v2.9.1
github.com/gofiber/fiber/v2 v2.49.2
github.com/gofiber/helmet/v2 v2.2.26
github.com/google/uuid v1.3.0
github.com/google/uuid v1.3.1
github.com/joho/godotenv v1.5.1
go.uber.org/zap v1.24.0
go.uber.org/zap v1.26.0
gorm.io/driver/mysql v1.5.1
gorm.io/driver/postgres v1.5.2
gorm.io/gorm v1.25.1
gorm.io/gorm v1.25.4
)

require (
Expand All @@ -23,7 +23,7 @@ require (
github.com/gofrs/uuid v4.4.0+incompatible // indirect
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
github.com/hashicorp/go-uuid v1.0.3 // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
github.com/jackc/pgx/v5 v5.4.3 // indirect
github.com/jcmturner/aescts/v2 v2.0.0 // indirect
github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect
github.com/jcmturner/gofork v1.7.6 // indirect
Expand All @@ -34,7 +34,7 @@ require (
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/philhofer/fwd v1.1.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
Expand All @@ -45,14 +45,14 @@ require (
github.com/segmentio/ksuid v1.0.4 // indirect
github.com/tinylib/msgp v1.1.8 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/goleak v1.1.12 // indirect
go.uber.org/goleak v1.2.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/net v0.16.0 // indirect
)

require (
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d
github.com/alessio/shellescape v1.4.1
github.com/alessio/shellescape v1.4.2
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/avast/retry-go v3.0.0+incompatible
github.com/go-sql-driver/mysql v1.7.1 // indirect
Expand All @@ -61,15 +61,15 @@ require (
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/klauspost/compress v1.16.5 // indirect
github.com/masterzen/winrm v0.0.0-20220917170901-b07f6cb0598d
github.com/klauspost/compress v1.17.0 // indirect
github.com/masterzen/winrm v0.0.0-20230926183142-a7fbe840deba
github.com/mervick/aes-everywhere/go/aes256 v0.0.0-20220903070135-f13ed3789ae1
github.com/phayes/freeport v0.0.0-20220201140144-74d24b5ae9f5
github.com/pkg/sftp v1.13.5
github.com/pkg/sftp v1.13.6
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.47.0 // indirect
github.com/valyala/fasthttp v1.50.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/crypto v0.9.0
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0
golang.org/x/crypto v0.14.0
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0
)
Loading

0 comments on commit f0b43db

Please sign in to comment.