Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
quant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
danet
quant
Commits
922c563c
Commit
922c563c
authored
11 months ago
by
Neil-Jocelyn Schark
Browse files
Options
Downloads
Patches
Plain Diff
set default of passthrough to false
See merge request
!144
parent
2b0d61eb
No related branches found
No related tags found
1 merge request
!144
set default of passthrough to false
Pipeline
#202333
passed
11 months ago
Stage: build
Stage: test
Stage: analyze
Stage: build-latest
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
goKMS/main.go
+1
-1
1 addition, 1 deletion
goKMS/main.go
quantumlayer/main/main.go
+1
-1
1 addition, 1 deletion
quantumlayer/main/main.go
with
2 additions
and
2 deletions
goKMS/main.go
+
1
−
1
View file @
922c563c
...
@@ -55,7 +55,7 @@ func main() {
...
@@ -55,7 +55,7 @@ func main() {
certFile
:=
flag
.
String
(
"certFile"
,
""
,
"location of the gNMI cert file (overwrites settings in config file)"
)
certFile
:=
flag
.
String
(
"certFile"
,
""
,
"location of the gNMI cert file (overwrites settings in config file)"
)
keyFile
:=
flag
.
String
(
"keyFile"
,
""
,
"location of the gNMI key file (overwrites settings in config file)"
)
keyFile
:=
flag
.
String
(
"keyFile"
,
""
,
"location of the gNMI key file (overwrites settings in config file)"
)
caFile
:=
flag
.
String
(
"caFile"
,
""
,
"location of the gNMI ca file (overwrites settings in config file)"
)
caFile
:=
flag
.
String
(
"caFile"
,
""
,
"location of the gNMI ca file (overwrites settings in config file)"
)
noGRPCPassthrough
:=
flag
.
Bool
(
"noGRPCPassthrough"
,
tru
e
,
"set the default resolve scheme for grpc to not use passthrough, default is false"
)
noGRPCPassthrough
:=
flag
.
Bool
(
"noGRPCPassthrough"
,
fals
e
,
"set the default resolve scheme for grpc to not use passthrough, default is false"
)
flag
.
Parse
()
flag
.
Parse
()
...
...
This diff is collapsed.
Click to expand it.
quantumlayer/main/main.go
+
1
−
1
View file @
922c563c
...
@@ -27,7 +27,7 @@ type Config struct {
...
@@ -27,7 +27,7 @@ type Config struct {
func
main
()
{
func
main
()
{
configPath
:=
flag
.
String
(
"config"
,
""
,
"path to the config file"
)
configPath
:=
flag
.
String
(
"config"
,
""
,
"path to the config file"
)
logLevel
:=
flag
.
String
(
"log"
,
"info"
,
"logrus lof level (debug, info, warn, error, fatal, panic), default: info"
)
logLevel
:=
flag
.
String
(
"log"
,
"info"
,
"logrus lof level (debug, info, warn, error, fatal, panic), default: info"
)
noGRPCPassthrough
:=
flag
.
Bool
(
"noGRPCPassthrough"
,
tru
e
,
"set the default resolve scheme for grpc to not use passthrough, default is false"
)
noGRPCPassthrough
:=
flag
.
Bool
(
"noGRPCPassthrough"
,
fals
e
,
"set the default resolve scheme for grpc to not use passthrough, default is false"
)
flag
.
Parse
()
flag
.
Parse
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment