You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .vscode/launch.json
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -153,9 +153,10 @@
153
153
"set global \"a.b\"=1;",
154
154
"set global \"$.auth.google.sub\"='krimmer@stackql.io';",
155
155
"select JSON_EXTRACT(saml.samlIdentity, '$.username') as saml_username from github.scim.saml_ids saml where saml.org = 'dummyorg';",
156
-
"select kind, name, maximumCardsPerInstance from google.compute.acceleratorTypes where project = 'defective-response-content-project' and zone = 'australia-southeast1-a' order by name desc;"
156
+
"select kind, name, maximumCardsPerInstance from google.compute.acceleratorTypes where project = 'defective-response-content-project' and zone = 'australia-southeast1-a' order by name desc;",
157
+
"registry pull google;"
157
158
],
158
-
"default": "show providers;"
159
+
"default": "registry pull google;"
159
160
},
160
161
{
161
162
"type": "pickString",
@@ -197,6 +198,16 @@
197
198
"-tags=sqlite_stackql"
198
199
]
199
200
},
201
+
{
202
+
"type": "pickString",
203
+
"id": "appRoot",
204
+
"description": "Extra Build Flags for debug; cannot place elsewhere",
rootCmd.PersistentFlags().BoolVar(&runtimeCtx.HTTPLogEnabled, dto.HTTPLogEnabledKey, false, "Display http request info in terminal")
123
147
rootCmd.PersistentFlags().IntVar(&runtimeCtx.HTTPMaxResults, dto.HTTPMaxResultsKey, -1, "Max results per http request, any number <=0 results in no limitation")
124
148
rootCmd.PersistentFlags().IntVar(&runtimeCtx.HTTPPageLimit, dto.HTTPPAgeLimitKey, 20, "Max pages of results that will be returned per resource, any number <=0 results in no limitation") //nolint:mnd // TODO: investigate
0 commit comments