-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently testing with [mariadb](https://hub.docker.com/_/mariadb) ``` CREATE PEER my FROM MYSQL WITH ( host = 'mysql', port = '3306', user = 'root', password = 'example', database = 'main', compression = 1, disable_tls = true ); ``` The scope of this PR is only peer creation & nexus proxy. No mirror support Co-authored-by: Kaushik Iska <[email protected]>
- Loading branch information
1 parent
f7c7ac2
commit e301f78
Showing
40 changed files
with
1,651 additions
and
721 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// stub to bypass validation | ||
|
||
package mysql | ||
|
||
import "context" | ||
|
||
type MySqlConnector struct{} | ||
|
||
func (MySqlConnector) Close() error { | ||
return nil | ||
} | ||
|
||
func (MySqlConnector) ConnectionActive(context.Context) error { | ||
return nil | ||
} |
Oops, something went wrong.