mirror of
https://github.com/tailscale/tailscale.git
synced 2025-08-13 22:47:30 +00:00
tailcfg: fix typo in SessionDuration field name
Noted by @danderson. Updates #3802 Change-Id: Ide15f3f28e30f6abb5c94d7dcd218bd9482752a0 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:

committed by
Brad Fitzpatrick

parent
695f8a1d7e
commit
89832c1a95
@@ -797,10 +797,10 @@ func (ss *sshSession) run() {
|
||||
|
||||
defer ss.ctx.CloseWithError(errSessionDone)
|
||||
|
||||
if ss.action.SesssionDuration != 0 {
|
||||
t := time.AfterFunc(ss.action.SesssionDuration, func() {
|
||||
if ss.action.SessionDuration != 0 {
|
||||
t := time.AfterFunc(ss.action.SessionDuration, func() {
|
||||
ss.ctx.CloseWithError(userVisibleError{
|
||||
fmt.Sprintf("Session timeout of %v elapsed.", ss.action.SesssionDuration),
|
||||
fmt.Sprintf("Session timeout of %v elapsed.", ss.action.SessionDuration),
|
||||
context.DeadlineExceeded,
|
||||
})
|
||||
})
|
||||
|
Reference in New Issue
Block a user