Skip to content

Commit

Permalink
Replace Go 1.9.X to 1.11.X in Travis (TykTechnologies#1976)
Browse files Browse the repository at this point in the history
  • Loading branch information
buger authored Nov 10, 2018
1 parent f7c8f69 commit 06ba5b1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ addons:

matrix:
include:
- go: 1.9.x
env: LATEST_GO=true # run linters and report coverage
- go: 1.10.x
env: LATEST_GO=true # run linters and report coverage
- go: 1.11.x
env: LATEST_GO=true # run linters and report coverage


services:
Expand Down
20 changes: 10 additions & 10 deletions coprocess_helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,11 @@ func TykSessionState(session *coprocess.SessionState) *user.SessionState {
MetaData: metadata,
Monitor: monitor,
EnableDetailedRecording: session.EnableDetailedRecording,
Tags: session.Tags,
Alias: session.Alias,
LastUpdated: session.LastUpdated,
IdExtractorDeadline: session.IdExtractorDeadline,
SessionLifetime: session.SessionLifetime,
Tags: session.Tags,
Alias: session.Alias,
LastUpdated: session.LastUpdated,
IdExtractorDeadline: session.IdExtractorDeadline,
SessionLifetime: session.SessionLifetime,
}
}

Expand Down Expand Up @@ -174,11 +174,11 @@ func ProtoSessionState(session *user.SessionState) *coprocess.SessionState {
Monitor: monitor,
Metadata: metadata,
EnableDetailedRecording: session.EnableDetailedRecording,
Tags: session.Tags,
Alias: session.Alias,
LastUpdated: session.LastUpdated,
IdExtractorDeadline: session.IdExtractorDeadline,
SessionLifetime: session.SessionLifetime,
Tags: session.Tags,
Alias: session.Alias,
LastUpdated: session.LastUpdated,
IdExtractorDeadline: session.IdExtractorDeadline,
SessionLifetime: session.SessionLifetime,
}
}

Expand Down

0 comments on commit 06ba5b1

Please sign in to comment.