Merge pull request #2698 from michael-berlin/hotrow_url

vttablet: Fix mentioned hot row protection debug URL in comments.
This commit is contained in:
Michael Berlin 2017-03-29 09:09:58 -07:00 коммит произвёл GitHub
Родитель eb8a9a8ea5 1530cca70e
Коммит 26a4b33cab
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -152,7 +152,7 @@ func (t *TxSerializer) lockLocked(ctx context.Context, key, table string) (bool,
if q.size > q.max {
q.max = q.size
}
// Publish the number of waits at /hotrows.
// Publish the number of waits at /debug/hotrows.
t.Record(key)
if q.size == 2 {
// Include first transaction in the count. (It was not recorded on purpose

Просмотреть файл

@ -95,7 +95,7 @@ func waitForPending(txs *TxSerializer, key string, i int) error {
}
func testHTTPHandler(txs *TxSerializer, count int) error {
req, err := http.NewRequest("GET", "/hotrows", nil)
req, err := http.NewRequest("GET", "/path-is-ignored-in-test", nil)
if err != nil {
return err
}