Skip to content

Commit 53d38a6

Browse files
committed
fixed MILLIS_IN_15MINS constant
1 parent f8c17e7 commit 53d38a6

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

cloud/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>cz.metacentrum</groupId>
66
<artifactId>accounting-parent</artifactId>
7-
<version>3.32</version>
7+
<version>3.32.1</version>
88
</parent>
99

1010
<artifactId>cloud</artifactId>

metaacct/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>cz.metacentrum</groupId>
99
<artifactId>accounting-parent</artifactId>
10-
<version>3.32</version>
10+
<version>3.32.1</version>
1111
</parent>
1212

1313
<artifactId>metaacct</artifactId>

metaacct_cmd/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>cz.metacentrum</groupId>
77
<artifactId>accounting-parent</artifactId>
8-
<version>3.32</version>
8+
<version>3.32.1</version>
99
</parent>
1010

1111
<artifactId>metaacct_cmd</artifactId>

pbsmon/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>cz.metacentrum</groupId>
66
<artifactId>accounting-parent</artifactId>
7-
<version>3.32</version>
7+
<version>3.32.1</version>
88
</parent>
99

1010
<artifactId>pbsmon</artifactId>

pbsmon/src/main/java/cz/cesnet/meta/stripes/JobsActionBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ public class JobsActionBean extends BaseActionBean {
3131

3232
final static Logger log = LoggerFactory.getLogger(JobsActionBean.class);
3333
final static private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
34-
private static final long MILLIS_IN_HOUR = 3600000l;
35-
private static final long MILLIS_IN_15MINS = 10 * 60 * 1000;
34+
private static final long MILLIS_IN_HOUR = 3600000L;
35+
private static final long MILLIS_IN_15MINS = 15 * 60 * 1000;
3636
private static final int INTERVALS = 24 * 4;
3737
int[] runningJobsCountersMins = new int[INTERVALS];
3838
int[] queuedJobsCountersMins = new int[INTERVALS];

perun_machines/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>cz.metacentrum</groupId>
77
<artifactId>accounting-parent</artifactId>
8-
<version>3.32</version>
8+
<version>3.32.1</version>
99
</parent>
1010

1111
<artifactId>perun_machines</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<!--
1010
Use "mvn versions:set -DnewVersion=3.33; mvn versions:commit" to change version in all modules
1111
-->
12-
<version>3.32</version>
12+
<version>3.32.1</version>
1313
<name>MetaCentrum Accounting Parent Project</name>
1414

1515
<properties>

0 commit comments

Comments
 (0)