mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-24 21:24:05 -08:00
Correct spelling mistakes
Signed-off-by: yuxiaobo <yuxiaobogo@163.com>
This commit is contained in:
parent
e3882629ba
commit
47e51c8b2b
|
@ -128,7 +128,7 @@ and the memory is available to the kernel when it needs it.
|
||||||
* [BUGFIX] Check if label value is valid when unmarshaling external labels from YAML. #5316
|
* [BUGFIX] Check if label value is valid when unmarshaling external labels from YAML. #5316
|
||||||
* [BUGFIX] Promparse: sort all labels when parsing. #5372
|
* [BUGFIX] Promparse: sort all labels when parsing. #5372
|
||||||
* [BUGFIX] Reload rules: copy state on both name and labels. #5368
|
* [BUGFIX] Reload rules: copy state on both name and labels. #5368
|
||||||
* [BUGFIX] Exponentation operator to drop metric name in result of operation. #5329
|
* [BUGFIX] Exponentiation operator to drop metric name in result of operation. #5329
|
||||||
* [BUGFIX] Config: resolve more file paths. #5284
|
* [BUGFIX] Config: resolve more file paths. #5284
|
||||||
* [BUGFIX] Promtool: resolve relative paths in alert test files. #5336
|
* [BUGFIX] Promtool: resolve relative paths in alert test files. #5336
|
||||||
* [BUGFIX] Set TLSHandshakeTimeout in HTTP transport. common#179
|
* [BUGFIX] Set TLSHandshakeTimeout in HTTP transport. common#179
|
||||||
|
|
|
@ -550,12 +550,12 @@ func TestScrapeLoopRun(t *testing.T) {
|
||||||
select {
|
select {
|
||||||
case <-signal:
|
case <-signal:
|
||||||
case <-time.After(5 * time.Second):
|
case <-time.After(5 * time.Second):
|
||||||
t.Fatalf("Cancelation during initial offset failed")
|
t.Fatalf("Cancellation during initial offset failed")
|
||||||
case err := <-errc:
|
case err := <-errc:
|
||||||
t.Fatalf("Unexpected error: %s", err)
|
t.Fatalf("Unexpected error: %s", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// The provided timeout must cause cancelation of the context passed down to the
|
// The provided timeout must cause cancellation of the context passed down to the
|
||||||
// scraper. The scraper has to respect the context.
|
// scraper. The scraper has to respect the context.
|
||||||
scraper.offsetDur = 0
|
scraper.offsetDur = 0
|
||||||
|
|
||||||
|
@ -607,7 +607,7 @@ func TestScrapeLoopRun(t *testing.T) {
|
||||||
case err := <-errc:
|
case err := <-errc:
|
||||||
t.Fatalf("Unexpected error: %s", err)
|
t.Fatalf("Unexpected error: %s", err)
|
||||||
case <-time.After(3 * time.Second):
|
case <-time.After(3 * time.Second):
|
||||||
t.Fatalf("Loop did not terminate on context cancelation")
|
t.Fatalf("Loop did not terminate on context cancellation")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1469,7 +1469,7 @@ func TestTargetScrapeScrapeCancel(t *testing.T) {
|
||||||
if err == nil {
|
if err == nil {
|
||||||
errc <- errors.New("Expected error but got nil")
|
errc <- errors.New("Expected error but got nil")
|
||||||
} else if ctx.Err() != context.Canceled {
|
} else if ctx.Err() != context.Canceled {
|
||||||
errc <- errors.Errorf("Expected context cancelation error but got: %s", ctx.Err())
|
errc <- errors.Errorf("Expected context cancellation error but got: %s", ctx.Err())
|
||||||
}
|
}
|
||||||
close(errc)
|
close(errc)
|
||||||
}()
|
}()
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
// The code in this file was largely written by Damian Gryski as part of
|
// The code in this file was largely written by Damian Gryski as part of
|
||||||
// https://github.com/dgryski/go-tsz and published under the license below.
|
// https://github.com/dgryski/go-tsz and published under the license below.
|
||||||
// It was modified to accommodate reading from byte slices without modifying
|
// It was modified to accommodate reading from byte slices without modifying
|
||||||
// the underlying bytes, which would panic when reading from mmaped
|
// the underlying bytes, which would panic when reading from mmap'd
|
||||||
// read-only byte slices.
|
// read-only byte slices.
|
||||||
|
|
||||||
// Copyright (c) 2015,2016 Damian Gryski <damian@gryski.com>
|
// Copyright (c) 2015,2016 Damian Gryski <damian@gryski.com>
|
||||||
|
|
|
@ -2271,7 +2271,7 @@ func TestDBReadOnly(t *testing.T) {
|
||||||
err error
|
err error
|
||||||
)
|
)
|
||||||
|
|
||||||
// Boostrap the db.
|
// Bootstrap the db.
|
||||||
{
|
{
|
||||||
dbDir, err = ioutil.TempDir("", "test")
|
dbDir, err = ioutil.TempDir("", "test")
|
||||||
testutil.Ok(t, err)
|
testutil.Ok(t, err)
|
||||||
|
@ -2370,7 +2370,7 @@ func TestDBReadOnly_FlushWAL(t *testing.T) {
|
||||||
maxt int
|
maxt int
|
||||||
)
|
)
|
||||||
|
|
||||||
// Boostrap the db.
|
// Bootstrap the db.
|
||||||
{
|
{
|
||||||
dbDir, err = ioutil.TempDir("", "test")
|
dbDir, err = ioutil.TempDir("", "test")
|
||||||
testutil.Ok(t, err)
|
testutil.Ok(t, err)
|
||||||
|
|
Loading…
Reference in a new issue