8000 FE-541: update disk usage message (#21672) · solisoft/arangodb@e1cb9ab · GitHub
[go: up one dir, main page]

Skip to content

Commit e1cb9ab

Browse files
authored
FE-541: update disk usage message (arangodb#21672)
1 parent 18bdd2a commit e1cb9ab

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

CHANGELOG

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
devel
22
-----
33

4+
* FE-541: update disk usage message.
5+
46
* Simplify Maintenance by removing unused features.
57

68
* Fix BTS-2100: Due to a priority inversion it was possible that a lot of

js/apps/system/_admin/aardvark/APP/frontend/js/views/navigationView.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -324,23 +324,23 @@
324324
const readonlyDate = new Date(
325325
currentTime.getTime() + 1000 * diskusage.secondsUntilReadOnly
326326
);
327-
message = "Your server has reached its disk usage limit. " +
328-
"Its operation will be restricted to read-only mode on " + readonlyDate + "! " + "\n"+
329-
"Please contact your ArangoDB sales representative or sales@arangodb.com to renew your license immediately.";
327+
message =
328+
"Your server has reached its disk usage limit of 100GB. If you don't decrease the data size, the server will be restricted to read-only mode on " +
329+
readonlyDate +
330+
". Please contact your ArangoDB sales representative or sales@arangodb.com to get a valid license and continue using ArangoDB without limitations";
330331
type = 'warning';
331332
break;
332333
case "read-only":
333334
const shutdownDate = new Date(
334335
currentTime.getTime() + 1000 * diskusage.secondsUntilShutDown
335336
);
336-
message = "Your server has been restricted to read-only mode! " +
337-
"Please contact your ArangoDB sales representative or sales@arangodb.com to renew your license immediately. " +
338-
"The server will shutdown on " + shutdownDate + "!";
337+
message =
338+
"Your server has been restricted to read-only mode due to violation of the 100GB data size limit. Please contact your ArangoDB sales representative or sales@arangodb.com to get a valid license as soon as possible. Without a valid license the server will be shut down on " + shutdownDate + "."
339339
type = 'error';
340340
break;
341341
case "shutdown":
342-
message = "The disk usage limit was reached, and the server will shutdown in 10 minutes. " +
343-
"Please contact your ArangoDB sales representative or sales@arangodb.com to renew your license.";
342+
message =
343+
"The 100 GB disk usage limit was reached and the server was put into the read-only mode after a grace period. The server will be shut down in 10 minutes. Please contact your ArangoDB sales representative or sales@arangodb.com to get a valid license.";
344344
type = 'error';
345345
break;
346346
case "good":

0 commit comments

Comments
 (0)
0