-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit adds a verbosity level to log messages. The verbosity level can be configure in the .cnf file or else Note will be assumed by default. This is to avoid the scheduler from flooding the logs with messages that indicate the scheduler is running as expected. There are 4 log levels: - Info - Note - Warning - Error The last two are obvious, but the first two are as follows: - Info: This is just and information, the action that follow this will not change the state of the proxy. - Note: This is a note to the user that the action that follows this will most likely change the state of the proxy. Closes #16
- Loading branch information
1 parent
bbecb53
commit d0c0b7c
Showing
10 changed files
with
86 additions
and
23 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 |
---|---|---|
|
@@ -10,3 +10,6 @@ target/ | |
*.pdb | ||
|
||
.vscode/ | ||
|
||
# Demo config | ||
config_demo.cnf |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ services: | |
environment: | ||
- MYSQL_ROOT_PASSWORD=noria | ||
- MYSQL_DATABASE=noria | ||
command: --server-id=1 | ||
command: --server-id=1 --local-infile=1 | ||
ports: | ||
- "3306:3306" | ||
healthcheck: | ||
|
@@ -28,7 +28,7 @@ services: | |
- "3307:3307" | ||
- "6034:6034" | ||
environment: | ||
- UPSTREAM_DB_URL=mysql://root:[email protected]:3306/noria | ||
- UPSTREAM_DB_URL=mysql://root:[email protected]:3306/imdb | ||
- LISTEN_ADDRESS=0.0.0.0:3307 | ||
depends_on: | ||
mysql-master: | ||
|
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
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
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