Skip to content

Commit

Permalink
Merge pull request #293 from oetiker/fix-missing
Browse files Browse the repository at this point in the history
prepere for 2.8.2 release
  • Loading branch information
oetiker authored Aug 13, 2021
2 parents 81579ee + 2f85e07 commit e4a69a2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2021-08-13 08:12:06 +0200 Tobias Oetiker <[email protected]>

- release 2.8.2
- fix spelling issues in FTPtransfer.pm
- add missing README.md to the release archive

2021-08-11 17:12:22 +0200 Tobias Oetiker <[email protected]>

- release 2.8.1
Expand Down
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ AUTOMAKE_OPTIONS = foreign

SUBDIRS = lib thirdparty bin doc etc htdocs

EXTRA_DIST = COPYRIGHT CHANGES CONTRIBUTORS LICENSE cpanfile VERSION
EXTRA_DIST = COPYRIGHT CHANGES CONTRIBUTORS LICENSE cpanfile VERSION README.md

dist-hook:
$(PERL) -i -p -e '"$(PACKAGE_VERSION)" =~ /(\d+)\.(\d+)\.(\d+)/ and $$v = sprintf("%d.%03d%03d",$$1,$$2,$$3) and s/^\$$VERSION\s*=\s*".*?"/\$$VERSION = "$$v"/' $(distdir)/lib/Smokeping.pm
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.8.1
2.8.2
4 changes: 2 additions & 2 deletions lib/Smokeping/probes/FTPtransfer.pm
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ sub pingone {
$ftp->quit;
$elapsed = ( $end - $start );
$ok or next;
$self->do_debug("$host - $mode mode transfered $size Bytes in ${elapsed}s");
$self->do_debug("$host - $mode mode transferred $size Bytes in ${elapsed}s");
push @times, $elapsed;
}
return sort { $a <=> $b } @times;
Expand All @@ -160,7 +160,7 @@ sub probevars {
$h->{timeout}{_doc} = <<DOC;
The timeout is the maximum amount of time you will allow the probe to
transfer the file. If the probe does not succeed to transfer in the time specified,
it will get killed and a 'loss' will be loged.
it will get killed and a 'loss' will be logged.
Since FTPtransfer is an invasive probe you should make sure you do not load
the link for more than a few seconds anyway. Smokeping currently has a hard
Expand Down

0 comments on commit e4a69a2

Please sign in to comment.