-
Notifications
You must be signed in to change notification settings - Fork 9.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into RK/write-only-GA
- Loading branch information
Showing
37 changed files
with
762 additions
and
467 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
kind: ENHANCEMENTS | ||
body: 'backend/oss: Add new argument tablestore_instance_name used in VPC context' | ||
time: 2025-02-19T09:41:01.733881+08:00 | ||
custom: | ||
Issue: "36253" |
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 |
---|---|---|
|
@@ -27,3 +27,6 @@ vendor/ | |
|
||
# Coverage | ||
coverage.txt | ||
|
||
# IDEs | ||
.vscode/ |
27 changes: 27 additions & 0 deletions
27
docs/debugging-configs/vscode/debug-automated-tests/launch.json
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,27 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
// Highlight a test's name with your cursor and run this debugger configuration | ||
// from the debugger tools in the left-side Activity Bar. | ||
// This will result in the equivalent of this command being run using the debugger: | ||
// `go test -v -run ^<selected text>$ <the current opened file's folder path>` | ||
"name": "Run selected test", | ||
"request": "launch", | ||
"type": "go", | ||
"args": [ | ||
"-test.v", | ||
"-test.run", | ||
"^${selectedText}$" | ||
], | ||
// Environment variables can be set from a file or as key-value pairs in the configuration. | ||
// "env": { | ||
// "MY_ENV": "my-value", | ||
// }, | ||
// "envFile": "./vscode/private.env", | ||
"mode": "auto", | ||
"program": "${fileDirname}", | ||
"showLog": true // dlv's logs | ||
} | ||
] | ||
} |
27 changes: 27 additions & 0 deletions
27
docs/debugging-configs/vscode/launch-from-vscode-debugger/launch.json
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,27 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
// Runs Terraform using the Terraform configuration specified via the chdir argument | ||
"name": "Run Terraform in debug mode", | ||
"request": "launch", | ||
"type": "go", | ||
"args": [ | ||
"-chdir=<absolute path to a Terraform configuration>", | ||
// Change this array to perform different terraform commands with different arguments. | ||
"plan", | ||
"-var='name=value'" | ||
], | ||
// "cwd": "<absolute path to a Terraform configuration>", // An alternative to using the -chdir global flag above. | ||
// Environment variables can be set from a file or as key-value pairs in the configuration. | ||
// "env": { | ||
// "MY_ENV": "my-value", | ||
// }, | ||
// "envFile": "./vscode/private.env", | ||
"mode": "debug", | ||
"program": "${workspaceFolder}", | ||
"console": "integratedTerminal", // allows responding to y/n in terminal, e.g. in apply command. | ||
"showLog": false // dlv's logs | ||
} | ||
] | ||
} |
File renamed without changes.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Oops, something went wrong.