generated from networkservicemesh/cmd-template
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Do lookup on connection before do request (#151)
* WIP: Show conn lookup via monitors Signed-off-by: Denis Tingaikin <[email protected]> * add missed imports cache Signed-off-by: Denis Tingaikin <[email protected]> * fix ci issues Signed-off-by: Denis Tingaikin <[email protected]>
- Loading branch information
1 parent
bf2b389
commit 2b2f3dd
Showing
10 changed files
with
122 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
// Copyright (c) 2021 Cisco and/or its affiliates. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at: | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Package imports is used for generating list of imports to optimize use of docker build cache | ||
package imports | ||
|
||
//go:generate bash -c "rm -rf imports_linux.go" | ||
//go:generate bash -c "cd $(mktemp -d) && GO111MODULE=on go get github.com/edwarnicke/[email protected]" | ||
//go:generate bash -c "GOOS=linux ${GOPATH}/bin/imports-gen" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// DO NOT EDIT - generated by github.com/edwarnicke/imports-gen | ||
package imports | ||
|
||
import ( | ||
_ "context" | ||
_ "fmt" | ||
_ "github.com/antonfisher/nested-logrus-formatter" | ||
_ "github.com/edwarnicke/grpcfd" | ||
_ "github.com/kelseyhightower/envconfig" | ||
_ "github.com/networkservicemesh/api/pkg/api/networkservice" | ||
_ "github.com/networkservicemesh/api/pkg/api/networkservice/mechanisms/common" | ||
_ "github.com/networkservicemesh/api/pkg/api/networkservice/mechanisms/kernel" | ||
_ "github.com/networkservicemesh/api/pkg/api/networkservice/mechanisms/vfio" | ||
_ "github.com/networkservicemesh/sdk-sriov/pkg/networkservice/common/mechanisms/vfio" | ||
_ "github.com/networkservicemesh/sdk-sriov/pkg/networkservice/common/token" | ||
_ "github.com/networkservicemesh/sdk/pkg/networkservice/chains/client" | ||
_ "github.com/networkservicemesh/sdk/pkg/networkservice/common/authorize" | ||
_ "github.com/networkservicemesh/sdk/pkg/networkservice/common/mechanisms" | ||
_ "github.com/networkservicemesh/sdk/pkg/networkservice/common/mechanisms/kernel" | ||
_ "github.com/networkservicemesh/sdk/pkg/networkservice/common/mechanisms/sendfd" | ||
_ "github.com/networkservicemesh/sdk/pkg/networkservice/core/chain" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/grpcutils" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/jaeger" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/log" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/log/logruslogger" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/nsurl" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/opentracing" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/signalctx" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/spiffejwt" | ||
_ "github.com/networkservicemesh/sdk/pkg/tools/token" | ||
_ "github.com/pkg/errors" | ||
_ "github.com/sirupsen/logrus" | ||
_ "github.com/spiffe/go-spiffe/v2/spiffetls/tlsconfig" | ||
_ "github.com/spiffe/go-spiffe/v2/svid/x509svid" | ||
_ "github.com/spiffe/go-spiffe/v2/workloadapi" | ||
_ "github.com/stretchr/testify/require" | ||
_ "google.golang.org/grpc" | ||
_ "google.golang.org/grpc/credentials" | ||
_ "net/url" | ||
_ "os" | ||
_ "testing" | ||
_ "time" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters