[LON-CAPA-cvs] cvs: loncom(version_2_11_X) / lond
raeburn
raeburn at source.lon-capa.org
Tue May 5 16:28:56 EDT 2020
raeburn Tue May 5 20:28:56 2020 EDT
Modified files: (Branch: version_2_11_X)
/loncom lond
Log:
- For 2.11
Backport 1.563
Index: loncom/lond
diff -u loncom/lond:1.489.2.37 loncom/lond:1.489.2.38
--- loncom/lond:1.489.2.37 Mon May 4 17:08:26 2020
+++ loncom/lond Tue May 5 20:28:56 2020
@@ -2,7 +2,7 @@
# The LearningOnline Network
# lond "LON Daemon" Server (port "LOND" 5663)
#
-# $Id: lond,v 1.489.2.37 2020/05/04 17:08:26 raeburn Exp $
+# $Id: lond,v 1.489.2.38 2020/05/05 20:28:56 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -63,7 +63,7 @@
my $status='';
my $lastlog='';
-my $VERSION='$Revision: 1.489.2.37 $'; #' stupid emacs
+my $VERSION='$Revision: 1.489.2.38 $'; #' stupid emacs
my $remoteVERSION;
my $currenthostid="default";
my $currentdomainid;
@@ -4593,11 +4593,10 @@
my ($uname,$udom) = ($1,$2);
next unless (-e "$perlvar{'lonDaemons'}/tmp/$uname$dbsuffix");
my $mtime = (stat("$perlvar{'lonIDsDir'}/$filename"))[9];
- my $since=$now-$mtime;
if ($lastactivity < 0) {
- next if ($since <= $lastactivity);
+ next if ($mtime-$now > $lastactivity);
} else {
- next if ($since > $lastactivity);
+ next if ($now-$mtime > $lastactivity);
}
$sessions{$uname.':'.$udom} = $mtime;
}
More information about the LON-CAPA-cvs
mailing list