Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DNM] connection string #143

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ addcopy: ## Add copyright to all files
@echo "==> Generating serverless br client"
swagger generate client -f pkg/tidbcloud/v1beta1/serverless_br/serverless-br.swagger.json -A tidbcloud-serverless -t pkg/tidbcloud/v1beta1/serverless_br

.PHONY: generate-connect-info
generate-connect-info:
@scripts/connect-info.sh

.PHONY: fmt
fmt: ## Format changed go
Expand Down
2 changes: 1 addition & 1 deletion internal/cli/serverless/branch/branch.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2023 PingCAP, Inc.

Check failure on line 1 in internal/cli/serverless/branch/branch.go

View workflow job for this annotation

GitHub Actions / lint

: # tidbcloud-cli/internal/cli/serverless/branch [tidbcloud-cli/internal/cli/serverless/branch.test]
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -31,6 +31,6 @@
branchCmd.AddCommand(DescribeCmd(h))
branchCmd.AddCommand(DeleteCmd(h))
branchCmd.AddCommand(ConnectCmd(h))
branchCmd.AddCommand(ConnectInfoCmd(h))
//branchCmd.AddCommand(ConnectInfoCmd(h))
return branchCmd
}
Loading
Loading