Skip to content

Commit

Permalink
Replace buggy 1.3.10 when profiling
Browse files Browse the repository at this point in the history
  • Loading branch information
phaag committed Oct 6, 2023
1 parent 312e8c8 commit f7ff883
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Notes:
======

This is version 1.3.10 of NfSen. It is a compatibility version for
new nfdump-1.7.x. NfSen 1.3.10 works with nfdump 1.6.20 and later
This is version 1.3.11 of NfSen. It is a compatibility version for
new nfdump-1.7.x. NfSen 1.3.11 works with nfdump 1.6.20 and later
as well with nfdump-1.7.x.
Do not use any earlier nfdump version < 1.6.20 as well as nfdump 1.5.x

Expand All @@ -12,7 +12,7 @@ data, collected with nfdump-1.6.x does not work. Profiling works for
all data version 2 from nfdump-1.7.
Update: 1. Update nfdump - 2. Update nfsen. The order is important.

nfsen-1.3.10 is php 8.1 ready.
nfsen-1.3.11 is php 8.1 ready.

NOTE: *nfsen is no longer under development*

Expand Down
2 changes: 1 addition & 1 deletion bin/nfsen
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ use Nfcomm;
use Log;

my $VERSION = 'nfsen 2022 peter';
my $nfsen_version = "1.3.10";
my $nfsen_version = "1.3.11";

our $child_exit = 0;
my $unit = 'nfsen';
Expand Down
2 changes: 1 addition & 1 deletion bin/nfsend
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ use Nfsync;
use Log;

my $VERSION = 'nfsend 2022 peter';
my $nfsen_version = "1.3.10";
my $nfsen_version = "1.3.11";

my $forever = 1;
my $reload = 0;
Expand Down
2 changes: 1 addition & 1 deletion html/nfsen.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
// The very first function to call
session_start();

$expected_version = "1.3.10";
$expected_version = "1.3.11";

// Session check
if ( array_key_exists('backend_version', $_SESSION ) && $_SESSION['backend_version'] != $expected_version ) {
Expand Down
2 changes: 1 addition & 1 deletion install.pl
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
use RRDconvertv1;

my $VERSION = 'install.pl 2022-12-19';
my $nfsen_version = "1.3.10";
my $nfsen_version = "1.3.11";

my @ProfileTag = (
"# \n",
Expand Down

1 comment on commit f7ff883

@thezoggy
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just fyi, you have 2022 as version year/copyright.

Please sign in to comment.