Skip to content

The progress bar is not responding when downloading photo. #17486

Closed
@zjgcjy

Description

@zjgcjy

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

I upgraded from v1.123 to the latest release version (v1.131.3) last night. Today I tried to download the images, but the progress bar didn't respond and stayed at 0% even though it was actually downloading. It was weird, but it only happened on the web page, not in the app.

The OS that Immich Server is running on

Debian

Version of Immich Server

v1.131.3

Version of Immich Mobile App

v1.131.3 build.201

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

#
# WARNING: Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.
#

name: immich

services:
  proxy:
    image: "docker.io/library/caddy:latest"
    container_name: "immich_caddy"
    restart: always
    ports:
        - "2283:2283"   # immich-web-gui
    environment:
        EMAIL: "xxxxxxxx"
    volumes:
        - "xxxxxxxx"
        - "xxxxxxxx"
        - "xxxxxxxx"
    depends_on:
        - "immich_server"
  
  immich_server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    # ports:
    #   - '2283:2283'
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich_machine_learning
    # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - xxxxxxxx
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/redis:6.2-alpine@sha256:eaba718fecd1196d88533de7ba49bf903ad33664a92debb24660a922ecd9cac8
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    healthcheck:
      test: >-
        pg_isready --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" || exit 1;
        Chksum="$$(psql --dbname="$${POSTGRES_DB}" --username="$${POSTGRES_USER}" --tuples-only --no-align
        --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')";
        echo "checksum failure count is $$Chksum";
        [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: >-
      postgres
      -c shared_preload_libraries=vectors.so
      -c 'search_path="$$user", public, vectors'
      -c logging_collector=on
      -c max_wal_size=2GB
      -c shared_buffers=512MB
      -c wal_compression=on
    restart: always

networks:
  default:
      external:
          name: "immich_net"

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=xxxxxxxx
# The location where your database files are stored
DB_DATA_LOCATION=./postgres

MODULE_CACHE=/root/clip/cache

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
TZ=Asia/Shanghai

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION="v1.131.3"

# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=xxxxxxxx

# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=immich_db_user
DB_DATABASE_NAME=immich_db

Reproduction steps

  1. just click the download button on the web page. (whether download one or multiple images,)

Relevant log output

2025-04-09T13:13:21+08:00 [Nest] 15  - 04/09/2025, 1:13:21 PM   DEBUG [Api:EventRepository~ogpzwqss] Server event: config.update (send)
2025-04-09T13:13:21+08:00 [Nest] 15  - 04/09/2025, 1:13:21 PM     LOG [Api:SystemConfigService~ogpzwqss] LogLevel=log (set via system config)
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:EventRepository] Server event: config.update (receive)
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Updating queue concurrency settings
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting thumbnailGeneration concurrency to 3
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting metadataExtraction concurrency to 5
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting videoConversion concurrency to 1
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting faceDetection concurrency to 2
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting facialRecognition concurrency to 1
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting smartSearch concurrency to 2
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting duplicateDetection concurrency to 1
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting backgroundTask concurrency to 5
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting storageTemplateMigration concurrency to 1
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting migration concurrency to 5
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting search concurrency to 5
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting sidecar concurrency to 5
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting library concurrency to 5
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting notifications concurrency to 5
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM   DEBUG [Microservices:JobService] Setting backupDatabase concurrency to 1
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM VERBOSE [Microservices:SmartInfoService] Current database CLIP dimension size is 640
2025-04-09T13:13:21+08:00 [Nest] 2  - 04/09/2025, 1:13:21 PM     LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)
2025-04-09T13:16:34+08:00 [Nest] 15  - 04/09/2025, 1:16:34 PM     LOG [Api:EventRepository] Websocket Connect:    VpsVaoOwRJWF2JHyAABb
2025-04-09T13:16:37+08:00 [Nest] 15  - 04/09/2025, 1:16:37 PM     LOG [Api:EventRepository] Websocket Disconnect: VpsVaoOwRJWF2JHyAABb
2025-04-09T13:16:42+08:00 [Nest] 15  - 04/09/2025, 1:16:42 PM     LOG [Api:EventRepository] Websocket Connect:    2iGd4kX9F1-f_DE9AABd
2025-04-09T13:16:49+08:00 [Nest] 15  - 04/09/2025, 1:16:49 PM     LOG [Api:EventRepository] Websocket Disconnect: 2iGd4kX9F1-f_DE9AABd
2025-04-09T13:17:07+08:00 [Nest] 15  - 04/09/2025, 1:17:07 PM   ERROR [Api:StreamableFile] Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close
2025-04-09T13:17:07+08:00     at ServerResponse.<anonymous> (node:internal/streams/pipeline:415:29)
2025-04-09T13:17:07+08:00     at ServerResponse.emit (node:events:530:35)
2025-04-09T13:17:07+08:00     at emitCloseNT (node:_http_server:1033:10)
2025-04-09T13:17:07+08:00     at Socket.onServerResponseClose (node:_http_server:284:5)
2025-04-09T13:17:07+08:00     at Socket.emit (node:events:530:35)
2025-04-09T13:17:07+08:00     at TCP.<anonymous> (node:net:351:12)
2025-04-09T13:17:07+08:00     at TCP.callbackTrampoline (node:internal/async_hooks:130:17) {
2025-04-09T13:17:07+08:00   code: 'ERR_STREAM_PREMATURE_CLOSE'
2025-04-09T13:17:07+08:00 }
2025-04-09T13:17:43+08:00 [Nest] 15  - 04/09/2025, 1:17:43 PM     LOG [Api:EventRepository] Websocket Connect:    Pt-NrKneDrmQF1ZtAABf
2025-04-09T13:18:15+08:00 [Nest] 15  - 04/09/2025, 1:18:15 PM     LOG [Api:EventRepository] Websocket Disconnect: Pt-NrKneDrmQF1ZtAABf
2025-04-09T13:19:11+08:00 [Nest] 15  - 04/09/2025, 1:19:11 PM     LOG [Api:EventRepository] Websocket Disconnect: puonZYNnTurzVyNAAABN
2025-04-09T13:22:40+08:00 [Nest] 15  - 04/09/2025, 1:22:40 PM     LOG [Api:EventRepository] Websocket Connect:    MbP7L4a0_mMuMp4yAABh
2025-04-09T13:25:37+08:00 [Nest] 15  - 04/09/2025, 1:25:37 PM   ERROR [Api:StreamableFile] Error [ERR_STREAM_PREMATURE_CLOSE]: Premature close
2025-04-09T13:25:37+08:00     at ServerResponse.<anonymous> (node:internal/streams/pipeline:415:29)
2025-04-09T13:25:37+08:00     at ServerResponse.emit (node:events:530:35)
2025-04-09T13:25:37+08:00     at emitCloseNT (node:_http_server:1033:10)
2025-04-09T13:25:37+08:00     at Socket.onServerResponseClose (node:_http_server:284:5)
2025-04-09T13:25:37+08:00     at Socket.emit (node:events:530:35)
2025-04-09T13:25:37+08:00     at TCP.<anonymous> (node:net:351:12)
2025-04-09T13:25:37+08:00     at TCP.callbackTrampoline (node:internal/async_hooks:130:17) {
2025-04-09T13:25:37+08:00   code: 'ERR_STREAM_PREMATURE_CLOSE'
2025-04-09T13:25:37+08:00 }
2025-04-09T13:27:25+08:00 [Nest] 15  - 04/09/2025, 1:27:25 PM     LOG [Api:EventRepository] Websocket Disconnect: MbP7L4a0_mMuMp4yAABh
2025-04-09T14:13:42+08:00 [Nest] 15  - 04/09/2025, 2:13:42 PM     LOG [Api:EventRepository] Websocket Connect:    1IAJ1ZHMPg98_-BmAABj
2025-04-09T14:14:57+08:00 [Nest] 15  - 04/09/2025, 2:14:57 PM     LOG [Api:SystemConfigService~ywyjobya] LogLevel=log (set via system config)
2025-04-09T14:14:57+08:00 [Nest] 2  - 04/09/2025, 2:14:57 PM     LOG [Microservices:SystemConfigService] LogLevel=log (set via system config)
2025-04-09T14:15:16+08:00 [Nest] 2  - 04/09/2025, 2:15:16 PM     LOG [Microservices:StorageTemplateService] Starting storage template migration
2025-04-09T14:16:10+08:00 [Nest] 2  - 04/09/2025, 2:16:10 PM     LOG [Microservices:StorageTemplateService] Finished storage template migration
2025-04-09T14:29:37+08:00 [Nest] 15  - 04/09/2025, 2:29:37 PM     LOG [Api:EventRepository] Websocket Disconnect: 1IAJ1ZHMPg98_-BmAABj
2025-04-09T14:31:29+08:00 [Nest] 15  - 04/09/2025, 2:31:29 PM     LOG [Api:EventRepository] Websocket Connect:    6ONLD4-Z8Ozt5BVjAABl
2025-04-09T14:41:50+08:00 [Nest] 15  - 04/09/2025, 2:41:50 PM     LOG [Api:EventRepository] Websocket Disconnect: 6ONLD4-Z8Ozt5BVjAABl
2025-04-09T16:26:05+08:00 [Nest] 15  - 04/09/2025, 4:26:05 PM     LOG [Api:EventRepository] Websocket Connect:    qme5PQdvm_90aSIjAABn
2025-04-09T16:31:50+08:00 [Nest] 15  - 04/09/2025, 4:31:50 PM     LOG [Api:EventRepository] Websocket Disconnect: qme5PQdvm_90aSIjAABn
2025-04-09T16:41:56+08:00 [Nest] 15  - 04/09/2025, 4:41:56 PM     LOG [Api:EventRepository] Websocket Connect:    PbMAN2XHsCwzK0ayAABp
2025-04-09T16:42:05+08:00 [Nest] 15  - 04/09/2025, 4:42:05 PM     LOG [Api:SystemConfigService~lolfmvdd] LogLevel=verbose (set via system config)
2025-04-09T16:42:05+08:00 [Nest] 15  - 04/09/2025, 4:42:05 PM   DEBUG [Api:LoggingInterceptor~lolfmvdd] PUT /api/system-config 200 19.41ms 113.108.77.64
2025-04-09T16:42:05+08:00 [Nest] 15  - 04/09/2025, 4:42:05 PM VERBOSE [Api:LoggingInterceptor~lolfmvdd] {"backup":{"database":{"enabled":true,"cronExpression":"0 02 * * *","keepLastAmount":14}},"ffmpeg":{"crf":23,"threads":0,"preset":"ultrafast","targetVideoCodec":"h264","acceptedVideoCodecs":["h264"],"targetAudioCodec":"aac","acceptedAudioCodecs":["aac","mp3","libopus","pcm_s16le"],"acceptedContainers":["mov","ogg","webm"],"targetResolution":"720","maxBitrate":"0","bframes":-1,"refs":0,"gopSize":0,"temporalAQ":false,"cqMode":"auto","twoPass":false,"preferredHwDevice":"auto","transcode":"required","accel":"disabled","accelDecode":false,"tonemap":"hable"},"logging":{"enabled":true,"level":"verbose"},"machineLearning":{"enabled":true,"urls":["http://immich-machine-learning:3003"],"clip":{"enabled":true,"modelName":"XLM-Roberta-Large-Vit-B-16Plus"},"duplicateDetection":{"enabled":true,"maxDistance":0.01},"facialRecognition":{"enabled":true,"modelName":"antelopev2","minScore":0.7,"maxDistance":0.5,"minFaces":3}},"map":{"enabled":true,"lightStyle":"https://tiles.immich.cloud/v1/style/light.json","darkStyle":"https://tiles.immich.cloud/v1/style/dark.json"},"newVersionCheck":{"enabled":true},"oauth":{"autoLaunch":false,"autoRegister":true,"buttonText":"Login with OAuth","clientId":"","clientSecret":"","defaultStorageQuota":0,"enabled":false,"issuerUrl":"","mobileOverrideEnabled":false,"mobileRedirectUri":"","scope":"openid email profile","signingAlgorithm":"RS256","profileSigningAlgorithm":"none","storageLabelClaim":"preferred_username","storageQuotaClaim":"immich_quota"},"passwordLogin":"********","reverseGeocoding":{"enabled":true},"metadata":{"faces":{"import":true}},"storageTemplate":{"enabled":true,"hashVerificationEnabled":true,"template":"{{y}}/{{MM}}/{{dd}}/{{filename}}"},"job":{"thumbnailGeneration":{"concurrency":3},"metadataExtraction":{"concurrency":5},"videoConversion":{"concurrency":1},"smartSearch":{"concurrency":2},"migration":{"concurrency":5},"backgroundTask":{"concurrency":5},"search":{"concurrency":5},"faceDetection":{"concurrency":2},"sidecar":{"concurrency":5},"library":{"concurrency":5},"notifications":{"concurrency":5}},"image":{"thumbnail":{"format":"webp","quality":80,"size":250},"preview":{"format":"jpeg","quality":80,"size":1440},"fullsize":{"enabled":true,"format":"jpeg","quality":96},"colorspace":"p3","extractEmbedded":true},"trash":{"enabled":true,"days":30},"theme":{"customCss":""},"library":{"scan":{"enabled":true,"cronExpression":"0 0 * * *"},"watch":{"enabled":false}},"notifications":{"smtp":{"enabled":false,"from":"","replyTo":"","transport":{"ignoreCert":false,"host":"","port":587,"username":"","password":"********"}}},"templates":{"email":{"albumInviteTemplate":"","welcomeTemplate":"","albumUpdateTemplate":""}},"server":{"externalDomain":"","loginPageMessage":"","publicUsers":true},"user":{"deleteDelay":7}}
2025-04-09T16:42:05+08:00 [Nest] 2  - 04/09/2025, 4:42:05 PM     LOG [Microservices:SystemConfigService] LogLevel=verbose (set via system config)
2025-04-09T16:42:05+08:00 [Nest] 15  - 04/09/2025, 4:42:05 PM   DEBUG [Api:LoggingInterceptor~qngfatje] GET /api/server/features 200 5.22ms 113.108.77.64
2025-04-09T16:42:05+08:00 [Nest] 15  - 04/09/2025, 4:42:05 PM   DEBUG [Api:LoggingInterceptor~p8uqloyp] GET /api/server/config 200 6.10ms 113.108.77.64
2025-04-09T16:42:07+08:00 [Nest] 15  - 04/09/2025, 4:42:07 PM   DEBUG [Api:LoggingInterceptor~h5b0f5nw] GET /api/server/ping 200 0.13ms ::ffff:127.0.0.1
2025-04-09T16:42:38+08:00 [Nest] 15  - 04/09/2025, 4:42:38 PM   DEBUG [Api:LoggingInterceptor~t9hqjmaf] GET /api/server/ping 200 0.13ms ::ffff:127.0.0.1
2025-04-09T16:43:09+08:00 [Nest] 15  - 04/09/2025, 4:43:09 PM   DEBUG [Api:LoggingInterceptor~b1njwtqt] GET /api/server/ping 200 0.13ms ::ffff:127.0.0.1
2025-04-09T16:43:21+08:00 [Nest] 15  - 04/09/2025, 4:43:21 PM   DEBUG [Api:LoggingInterceptor~hnlinmpf] GET /api/jobs 200 5.53ms 113.108.77.64
2025-04-09T16:43:21+08:00 [Nest] 15  - 04/09/2025, 4:43:21 PM   DEBUG [Api:LoggingInterceptor~babg7dxx] GET /api/server/storage 200 1.31ms 113.108.77.64
2025-04-09T16:43:21+08:00 [Nest] 15  - 04/09/2025, 4:43:21 PM   DEBUG [Api:LoggingInterceptor~sbj4qyof] GET /api/admin/users?withDeleted=true 200 1.84ms 113.108.77.64
2025-04-09T16:43:22+08:00 [Nest] 15  - 04/09/2025, 4:43:22 PM   DEBUG [Api:LoggingInterceptor~wxfo9y5s] GET /api/memories?for=2025-04-09T16%3A43%3A22.638Z 200 3.20ms 113.108.77.64
2025-04-09T16:43:22+08:00 [Nest] 15  - 04/09/2025, 4:43:22 PM   DEBUG [Api:LoggingInterceptor~qgmciv68] GET /api/timeline/buckets?isArchived=false&size=MONTH&withPartners=true&withStacked=true 200 25.70ms 113.108.77.64
2025-04-09T16:43:23+08:00 [Nest] 15  - 04/09/2025, 4:43:23 PM   DEBUG [Api:LoggingInterceptor~55jy90rp] GET /api/timeline/bucket?isArchived=false&size=MONTH&timeBucket=2025-04-01T00%3A00%3A00.000Z&withPartners=true&withStacked=true 200 91.91ms 113.108.77.64
2025-04-09T16:43:23+08:00 [Nest] 15  - 04/09/2025, 4:43:23 PM   DEBUG [Api:LoggingInterceptor~qwfeqcbc] GET /api/search/explore 200 20.48ms 113.108.77.64
2025-04-09T16:43:23+08:00 [Nest] 15  - 04/09/2025, 4:43:23 PM   DEBUG [Api:LoggingInterceptor~collyamo] GET /api/people?withHidden=false 200 26.16ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~rm2scm8p] GET /api/people/9d546195-2d6d-4bd0-af4a-2fb46386ba80/thumbnail?updatedAt=2025-03-28T03%3A56%3A26.883Z 304 557.79ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~5xrt9mw4] GET /api/people/be86e192-104b-4169-b1fc-7fcc5a26e9fa/thumbnail?updatedAt=2025-04-07T15%3A55%3A20.334Z 304 554.61ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~zi238h0k] GET /api/people/1ac731d1-fbf4-4418-a1c0-597d7e2f214a/thumbnail?updatedAt=2025-03-28T03%3A56%3A24.359Z 304 556.59ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~oq8m71tp] GET /api/people/b95bc6f0-bfd1-4806-9698-a8977bbdd8f0/thumbnail?updatedAt=2025-04-08T09%3A10%3A56.701Z 304 566.99ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~9co98wo8] GET /api/people/5f8d1c93-b101-4ab4-8e96-05813efed30b/thumbnail?updatedAt=2025-03-28T03%3A56%3A11.189Z 304 553.28ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~6xzrdep3] GET /api/people/0c7adc45-cfab-46bf-ac56-37d17a41cfbf/thumbnail?updatedAt=2025-03-28T03%3A57%3A21.029Z 304 529.67ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~swwna7or] GET /api/people/ba80a8cb-0ef2-4a07-a52e-96b71fb01eb6/thumbnail?updatedAt=2025-03-28T03%3A57%3A41.364Z 304 520.69ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~myxpmfqk] GET /api/people/af04a865-d7f2-4895-87eb-f5bb62ae8327/thumbnail?updatedAt=2025-03-28T03%3A57%3A36.203Z 304 549.36ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~qtiq03av] GET /api/people/827c0b39-fced-47b7-a576-606a73c76b42/thumbnail?updatedAt=2025-04-07T15%3A57%3A08.782Z 304 600.07ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~jo71um9f] GET /api/people/037081bd-e637-424a-a7dd-1fbcc26c8449/thumbnail?updatedAt=2025-03-28T03%3A58%3A45.661Z 304 626.78ms 113.108.77.64
2025-04-09T16:43:24+08:00 [Nest] 15  - 04/09/2025, 4:43:24 PM   DEBUG [Api:LoggingInterceptor~fb5yee1j] GET /api/people?withHidden=true 200 15.38ms 113.108.77.64
2025-04-09T16:43:25+08:00 [Nest] 15  - 04/09/2025, 4:43:25 PM   DEBUG [Api:LoggingInterceptor~a3btdkvg] GET /api/timeline/buckets?isArchived=false&size=MONTH&withPartners=true&withStacked=true 200 9.54ms 113.108.77.64
2025-04-09T16:43:25+08:00 [Nest] 15  - 04/09/2025, 4:43:25 PM   DEBUG [Api:LoggingInterceptor~bpi5u8kj] GET /api/timeline/bucket?isArchived=false&size=MONTH&timeBucket=2025-04-01T00%3A00%3A00.000Z&withPartners=true&withStacked=true 200 79.72ms 113.108.77.64
2025-04-09T16:43:26+08:00 [Nest] 15  - 04/09/2025, 4:43:26 PM   DEBUG [Api:LoggingInterceptor~0r02y67j] GET /api/assets/636a5558-3930-4a03-a53a-5f1ef1eb9135 200 4.19ms 113.108.77.64
2025-04-09T16:43:27+08:00 [Nest] 15  - 04/09/2025, 4:43:27 PM   DEBUG [Api:LoggingInterceptor~ncncudrj] GET /api/assets/636a5558-3930-4a03-a53a-5f1ef1eb9135 200 3.59ms 113.108.77.64
2025-04-09T16:43:27+08:00 [Nest] 15  - 04/09/2025, 4:43:27 PM   DEBUG [Api:LoggingInterceptor~5mqgsix4] GET /api/albums?assetId=636a5558-3930-4a03-a53a-5f1ef1eb9135 200 11.29ms 113.108.77.64
2025-04-09T16:43:27+08:00 [Nest] 15  - 04/09/2025, 4:43:27 PM   DEBUG [Api:LoggingInterceptor~jxnibjlm] GET /api/albums?assetId=636a5558-3930-4a03-a53a-5f1ef1eb9135 200 10.22ms 113.108.77.64
2025-04-09T16:43:27+08:00 [Nest] 15  - 04/09/2025, 4:43:27 PM   DEBUG [Api:LoggingInterceptor~hnyunrhc] GET /api/assets/636a5558-3930-4a03-a53a-5f1ef1eb9135/thumbnail?size=preview&c=CVr2lmAGxEJ%2BLruLDrZ1Ba7TwEY%3D 200 178.99ms 113.108.77.64
2025-04-09T16:43:27+08:00 [Nest] 15  - 04/09/2025, 4:43:27 PM   DEBUG [Api:LoggingInterceptor~qw3n00eu] GET /api/assets/514379f9-933c-4174-a961-3675f1c171ad/thumbnail?size=preview 200 194.05ms 113.108.77.64
2025-04-09T16:43:30+08:00 [Nest] 15  - 04/09/2025, 4:43:30 PM   DEBUG [Api:LoggingInterceptor~e5vbqb7h] GET /api/assets/636a5558-3930-4a03-a53a-5f1ef1eb9135/original 200 857.03ms 113.108.77.64
2025-04-09T16:43:40+08:00 [Nest] 15  - 04/09/2025, 4:43:40 PM   DEBUG [Api:LoggingInterceptor~ftywanq9] GET /api/server/ping 200 0.14ms ::ffff:127.0.0.1
2025-04-09T16:44:12+08:00 [Nest] 15  - 04/09/2025, 4:44:12 PM   DEBUG [Api:LoggingInterceptor~12fq5cxt] GET /api/server/ping 200 0.13ms ::ffff:127.0.0.1

Additional information

Image

No response

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions