1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-19 13:29:41 +02:00

fix(chisel): convert seed to private key file EE-5099 (#9149)

This commit is contained in:
cmeng 2023-07-13 15:19:40 +12:00 committed by GitHub
parent 91cfd2d0f2
commit b93624fa1f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 247 additions and 43 deletions

View file

@ -108,10 +108,10 @@ func mustSetupHandler(t *testing.T) *Handler {
security.NewRequestBouncer(store, jwtService, apiKeyService),
store,
fs,
chisel.NewService(store, shutdownCtx),
chisel.NewService(store, shutdownCtx, nil),
)
handler.ReverseTunnelService = chisel.NewService(store, shutdownCtx)
handler.ReverseTunnelService = chisel.NewService(store, shutdownCtx, nil)
return handler
}