-
-
-
+
+
+
+
- Update the following database variables as relevant to your Postgres container:
-DB_HOSTNAMEDB_USERNAMEDB_PASSWORDDB_DATABASE_NAMEDB_PORTUpdate the following database variables as relevant to your Postgres container:
+DB_HOSTNAMEDB_USERNAMEDB_PASSWORDDB_DATABASE_NAMEDB_PORT
-
+
:::tip
diff --git a/e2e/docker-compose.yml b/e2e/docker-compose.yml
index 48c17c828b..55d23b6422 100644
--- a/e2e/docker-compose.yml
+++ b/e2e/docker-compose.yml
@@ -28,14 +28,10 @@ services:
extra_hosts:
- 'auth-server:host-gateway'
depends_on:
- - redis
- database
ports:
- 2285:2285
- redis:
- image: redis:6.2-alpine@sha256:3211c33a618c457e5d241922c975dbc4f446d0bdb2dc75694f5573ef8e2d01fa
-
database:
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:739cdd626151ff1f796dc95a6591b55a714f341c737e27f045019ceabf8e8c52
command: -c fsync=off -c shared_preload_libraries=vectors.so
diff --git a/e2e/src/api/specs/jobs.e2e-spec.ts b/e2e/src/api/specs/jobs.e2e-spec.ts
index a9afd8475f..dcac05e4e1 100644
--- a/e2e/src/api/specs/jobs.e2e-spec.ts
+++ b/e2e/src/api/specs/jobs.e2e-spec.ts
@@ -78,7 +78,7 @@ describe('/jobs', () => {
}
await utils.jobCommand(admin.accessToken, JobName.MetadataExtraction, {
- command: JobCommand.Empty,
+ command: JobCommand.Clear,
force: false,
});
@@ -160,7 +160,7 @@ describe('/jobs', () => {
expect(assetBefore.thumbhash).toBeNull();
await utils.jobCommand(admin.accessToken, JobName.ThumbnailGeneration, {
- command: JobCommand.Empty,
+ command: JobCommand.Clear,
force: false,
});
diff --git a/install.sh b/install.sh
index ccefe4e894..85e3d8285f 100755
--- a/install.sh
+++ b/install.sh
@@ -59,7 +59,7 @@ show_friendly_message() {
Successfully deployed Immich!
You can access the website or the mobile app at http://$ip_address:2283
---------------------------------------------------
-If you want to configure custom information of the server, including the database, Redis information, or the backup (or upload) location, etc.
+If you want to configure custom information of the server, including the database, or the backup (or upload) location, etc.
1. First bring down the containers with the command 'docker compose down' in the immich-app directory,
diff --git a/mobile/openapi/lib/model/job_command.dart b/mobile/openapi/lib/model/job_command.dart
index 46ca7db68f..cc1a87f14a 100644
--- a/mobile/openapi/lib/model/job_command.dart
+++ b/mobile/openapi/lib/model/job_command.dart
@@ -26,7 +26,7 @@ class JobCommand {
static const start = JobCommand._(r'start');
static const pause = JobCommand._(r'pause');
static const resume = JobCommand._(r'resume');
- static const empty = JobCommand._(r'empty');
+ static const clear = JobCommand._(r'clear');
static const clearFailed = JobCommand._(r'clear-failed');
/// List of all possible values in this [enum][JobCommand].
@@ -34,7 +34,7 @@ class JobCommand {
start,
pause,
resume,
- empty,
+ clear,
clearFailed,
];
@@ -77,7 +77,7 @@ class JobCommandTypeTransformer {
case r'start': return JobCommand.start;
case r'pause': return JobCommand.pause;
case r'resume': return JobCommand.resume;
- case r'empty': return JobCommand.empty;
+ case r'clear': return JobCommand.clear;
case r'clear-failed': return JobCommand.clearFailed;
default:
if (!allowNull) {
diff --git a/mobile/openapi/lib/model/job_counts_dto.dart b/mobile/openapi/lib/model/job_counts_dto.dart
index afc90d1084..27cf09d5c7 100644
--- a/mobile/openapi/lib/model/job_counts_dto.dart
+++ b/mobile/openapi/lib/model/job_counts_dto.dart
@@ -14,54 +14,42 @@ class JobCountsDto {
/// Returns a new [JobCountsDto] instance.
JobCountsDto({
required this.active,
- required this.completed,
required this.delayed,
required this.failed,
- required this.paused,
required this.waiting,
});
int active;
- int completed;
-
int delayed;
int failed;
- int paused;
-
int waiting;
@override
bool operator ==(Object other) => identical(this, other) || other is JobCountsDto &&
other.active == active &&
- other.completed == completed &&
other.delayed == delayed &&
other.failed == failed &&
- other.paused == paused &&
other.waiting == waiting;
@override
int get hashCode =>
// ignore: unnecessary_parenthesis
(active.hashCode) +
- (completed.hashCode) +
(delayed.hashCode) +
(failed.hashCode) +
- (paused.hashCode) +
(waiting.hashCode);
@override
- String toString() => 'JobCountsDto[active=$active, completed=$completed, delayed=$delayed, failed=$failed, paused=$paused, waiting=$waiting]';
+ String toString() => 'JobCountsDto[active=$active, delayed=$delayed, failed=$failed, waiting=$waiting]';
Map{$t('waiting')}
{waitingCount.toLocaleString($locale)}
-{$t('waiting')}