Skip to content

Commit 52a2504

Browse files
Replace reference to palantir/stacktrace with interuss fork (#430)
* Replace reference to palantir/stacktrace with interuss fork * gofmt -s -w .
1 parent 518b157 commit 52a2504

45 files changed

Lines changed: 44 additions & 48 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

cmds/grpc-backend/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import (
2929
"github.com/interuss/dss/pkg/scd"
3030
scdc "github.com/interuss/dss/pkg/scd/store/cockroach"
3131
"github.com/interuss/dss/pkg/validations"
32-
"github.com/palantir/stacktrace"
32+
"github.com/interuss/stacktrace"
3333

3434
grpc_middleware "github.com/grpc-ecosystem/go-grpc-middleware"
3535
"go.uber.org/zap"

cmds/http-gateway/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"github.com/interuss/dss/pkg/logging"
2323

2424
"github.com/grpc-ecosystem/grpc-gateway/runtime"
25-
"github.com/palantir/stacktrace"
25+
"github.com/interuss/stacktrace"
2626
"go.uber.org/zap"
2727
"google.golang.org/grpc"
2828
"google.golang.org/grpc/codes"

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ module github.com/interuss/dss
33
// This forked version of openapi2proto has limited support for Open API v3.
44
replace github.com/NYTimes/openapi2proto => github.com/davidsansome/openapi2proto v0.2.3-0.20190826092301-b98d13b38dab
55

6-
replace github.com/palantir/stacktrace => github.com/interuss/stacktrace v0.0.0-20200827180054-b2e58cf48818
7-
86
go 1.14
97

108
require (
@@ -21,7 +19,7 @@ require (
2119
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
2220
github.com/grpc-ecosystem/grpc-gateway v1.14.3
2321
github.com/lib/pq v1.5.2
24-
github.com/palantir/stacktrace v0.0.0-00010101000000-000000000000
22+
github.com/interuss/stacktrace v0.0.0-20200827180054-b2e58cf48818
2523
github.com/stretchr/testify v1.5.1
2624
go.uber.org/multierr v1.5.0
2725
go.uber.org/zap v1.15.0

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,8 +243,6 @@ github.com/opencontainers/go-digest v1.0.0-rc1/go.mod h1:cMLVZDEM3+U2I4VmLI6N8jQ
243243
github.com/opencontainers/image-spec v1.0.1/go.mod h1:BtxoFyWECRxE4U/7sNtV5W15zMzWCbyJoFRP3s7yZA0=
244244
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
245245
github.com/openzipkin/zipkin-go v0.1.6/go.mod h1:QgAqvLzwWbR/WpD4A3cGpPtJrZXNIiJc5AZX7/PBEpw=
246-
github.com/palantir/stacktrace v0.0.0-20161112013806-78658fd2d177 h1:nRlQD0u1871kaznCnn1EvYiMbum36v7hw1DLPEjds4o=
247-
github.com/palantir/stacktrace v0.0.0-20161112013806-78658fd2d177/go.mod h1:ao5zGxj8Z4x60IOVYZUbDSmt3R8Ddo080vEgPosHpak=
248246
github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
249247
github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
250248
github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=

pkg/auth/auth.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"github.com/interuss/dss/pkg/models"
2020

2121
"github.com/dgrijalva/jwt-go"
22-
"github.com/palantir/stacktrace"
22+
"github.com/interuss/stacktrace"
2323
"go.uber.org/zap"
2424
"google.golang.org/grpc"
2525
"google.golang.org/grpc/metadata"

pkg/auth/auth_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"github.com/interuss/dss/pkg/models"
1515

1616
"github.com/dgrijalva/jwt-go"
17-
"github.com/palantir/stacktrace"
17+
"github.com/interuss/stacktrace"
1818
"github.com/stretchr/testify/require"
1919
"google.golang.org/grpc"
2020
"google.golang.org/grpc/metadata"

pkg/auth/claims.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"time"
88

99
"github.com/dgrijalva/jwt-go"
10-
"github.com/palantir/stacktrace"
10+
"github.com/interuss/stacktrace"
1111
)
1212

1313
var (

pkg/aux_/server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
dsserr "github.com/interuss/dss/pkg/errors"
99
ridserver "github.com/interuss/dss/pkg/rid/server"
1010
"github.com/interuss/dss/pkg/version"
11-
"github.com/palantir/stacktrace"
11+
"github.com/interuss/stacktrace"
1212
)
1313

1414
// Server implements auxpb.DSSAuxService.

pkg/cockroach/cockroach.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88

99
"github.com/coreos/go-semver/semver"
10-
"github.com/palantir/stacktrace"
10+
"github.com/interuss/stacktrace"
1111
)
1212

1313
var (

pkg/errors/errors.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"github.com/google/uuid"
1010
"github.com/interuss/dss/pkg/api/v1/auxpb"
1111
"github.com/interuss/dss/pkg/logging"
12-
"github.com/palantir/stacktrace"
12+
"github.com/interuss/stacktrace"
1313
"go.uber.org/zap"
1414
spb "google.golang.org/genproto/googleapis/rpc/status"
1515
"google.golang.org/grpc"

0 commit comments

Comments
 (0)