pglombardo / PasswordPusher

🔐 Securely share sensitive information with automatic expiration & deletion after a set number of views or duration. Track who, what and when with full audit logs.
https://docs.pwpush.com
Apache License 2.0
1.8k stars 330 forks source link

Upload large files #903

Open Raifuruu opened 1 year ago

Raifuruu commented 1 year ago

Hello,

I would like to know if there is a block for uploading large files? Because I try to upload small files and it works, but on larger files (about 3 GB) the loading bar remains blocked and nothing happens

Thank you for this project and this work

pglombardo commented 1 year ago

Hi @Raifuruu - are you using pwpush.com or self hosted? (if so what version)

pglombardo commented 1 year ago

Hi @Raifuruu - a couple other potential causes:

  1. HTTP Post may be limited by browser. Some information here.
  2. It could also be a network proxy (if on a corporate network) limiting upload sizes

Have you had any progress on this issue? Have you tried other browsers for comparison?

Raifuruu commented 1 year ago

Hello,

Thanks for your feedback I host the solution on a docker.

I haven't really managed to determine what the maximum size is yet, but after about 1 GB, the download freezes

pglombardo commented 1 year ago

For sure the largest uploads I've seen uploads are ~5GB. I've tried digging on what the limitation might be but nothing is immediately evident. When you upload larger files is there an error in the javascript console?

Raifuruu commented 1 year ago

No there is no error, I click on Publish, then the button remains in "Pushing..."

image

pglombardo commented 1 year ago

@Raifuruu do you mind if I create an account on that site and try it out myself?

Also what version are you running?

Raifuruu commented 1 year ago

No worries, you can create an account and try, here is the link : https://kspass.keycloud.fr/

How can I check the version?

pglombardo commented 1 year ago

Ok great. I created account and found the error.

Screenshot 2023-03-16 at 19 25 04

403 means forbidden - most likely with the file storage you configured. Maybe the application doesn't have write access there?

The only way to know for sure is to view the application logs.

Are you running the application as a Docker container? If so the logs are in /opt/PasswordPusher/log/*.log.

How can I check the version?

The Docker tag will suffice...

Let me know.

Raifuruu commented 1 year ago

I don't think it's a problem of rights because otherwise the small files wouldn't work too

Raifuruu commented 1 year ago

I will still look at the logs and give you the content

Thanks a lot for your work and your answers

pglombardo commented 1 year ago

I don't think it's a problem of rights because otherwise the small files wouldn't work too

I couldn't get any file to upload large or small. I tried both Vivaldi/chrome and Safari. Safari did reveal a bit more info though:

Screenshot 2023-03-17 at 10 09 03

IIRC this was a bug in an early version. If this is the case, then updating to to the release tag should fix this.

Raifuruu commented 1 year ago

However, for me and for all users who use the tool, sending small files works well : https://kspass.keycloud.fr/fr/f/vx1igzk935boypvqaq/r

I'm going to look at the version right now, and I'll let you know

Raifuruu commented 1 year ago

Here are the contents of my docker-compose.yml :

version: '3.3'
secrets:
  password_compte_commercial:
    external: true

services:
  postgres:
    image: docker.io/postgres:10
    volumes:
      - /var/lib/postgresql/data:/var/lib/postgresql/data
    ports:
      - "5432:5432"
    environment:
      POSTGRES_USER: passwordpusher_user
      POSTGRES_PASSWORD: passwordpusher_passwd
      POSTGRES_DB: passwordpusher_db

  passwordpusher:
    image: docker.io/pglombardo/pwpush-postgres:release
    secrets:
      - password_compte_commercial
    volumes:
      - /lib/KSPASS/Files:/opt/PasswordPusher/storage:rw
      - type: bind
        source: /lib/KSPASS/Files/bootstrap.css
        target: /opt/PasswordPusher/app/assets/stylesheets/bootstrap-litera.css
    ports:
      - "5100:5100"
    depends_on:
      - postgres
    links:
     - postgres:postgres
    environment:
     PUID: "1000"
     PGID: "1000"
     PWP_PRECOMPILE: 'true'
     PWP__PW__EXPIRE_AFTER_DAYS_DEFAULT: "1"
     PWP__PW__EXPIRE_AFTER_DAYS_MIN: "1"
     PWP__PW__EXPIRE_AFTER_DAYS_MAX: "5"
     PWP__PW__EXPIRE_AFTER_VIEWS_DEFAULT: "1"
     PWP__PW__EXPIRE_AFTER_VIEWS_MIN: "1"
     PWP__PW__EXPIRE_AFTER_VIEWS_MAX: "5"
     PWP__PW__RETRIEVAL_STEP_DEFAULT: "true"
     PWP__BRAND__TITLE: ""
     PWP__BRAND__TAGLINE: ""
     PWP__BRAND__LIGHT_LOGO: "https://www.keysource.eu/image/catalog/logo-kspass.png"
     PWP__BRAND__DARK_LOGO: "https://www.keysource.eu/image/catalog/logo-kspass.png"
     PWP__ENABLE_LOGINS: "true"
     PWP__HOST_PROTOCOL: 'https'
     PWP__HOST_DOMAIN: 'kspass.keycloud.fr'
     PWP__MAIL__SMTP_ENABLE_STARTTLS_AUTO: 'false'
     PWP__MAIL__SMTP_PORT: '587'
     PWP__MAIL__SMTP_ADDRESS: "smtp.orange.fr"
     PWP__MAIL__MAILER_SENDER: XXX
     PWP__MAIL__SMTP_USER_NAME: XXX
     PWP__MAIL__SMTP_PASSWORD: XXX
     PWP__MAIL__SMTP_AUTHENTICATION: 'plain'
     PWP__MAIL__RAISE_DELIVERY_ERRORS: 'true'
     PWP__MAIL__SMTP_ENABLE_STARTTLS_AUTO: 'false'
     PWP__ENABLE_FILE_PUSHES: "true"
     PWP__FILES__STORAGE: "local"
     PWP__FILES__EXPIRE_AFTER_DAYS_MAX: "7"
     PWP__FILES__EXPIRE_AFTER_VIEWS_MAX: "3"
     PWP__FILES__RETRIEVAL_STEP_DEFAULT: "true"
     PWP__DEFAULT_LOCALE: "fr"
     PWP__BRAND__ICON_32x32: "https://www.keysource.eu/image/catalog/favicon-kspass.png"
     PWP__BRAND__ICON_96x96: "https://www.keysource.eu/image/catalog/favicon-kspass.png"
     PWP__BRAND__ICON_16x16: "https://www.keysource.eu/image/catalog/favicon-kspass.png"
     PWP__BRAND__ICON_144x144: "https://www.keysource.eu/image/catalog/favicon-kspass.png"
     PWP__BRAND__ICON_57x57: "https://www.keysource.eu/image/catalog/favicon-kspass.png"
pglombardo commented 1 year ago

Ok that helps. I'm going to update that release tag to the latest later today and post back here. That may resolve it - I'll test it myself with this docker compose setup too.

If you want to do that yourself now, you could update that pwpush-postgres:release to pwpush-postgres:1.26.11.

Raifuruu commented 1 year ago

Here are the contents of the log file :

pwpusher@01e4ecf86b80:/opt/PasswordPusher/log$ cat production.log 
F, [2023-02-23T18:28:39.265983 #61] FATAL -- : [da43de91-6645-4267-9005-3267b7cd292c]   
[da43de91-6645-4267-9005-3267b7cd292c] ActionController::RoutingError (No route matches [GET] "/undefined"):
[da43de91-6645-4267-9005-3267b7cd292c]   
F, [2023-02-23T18:28:43.864753 #61] FATAL -- : [92178c10-d19c-42d6-91bc-b954e95e5890]   
[92178c10-d19c-42d6-91bc-b954e95e5890] ActionController::RoutingError (No route matches [GET] "/undefined"):
[92178c10-d19c-42d6-91bc-b954e95e5890]   
F, [2023-02-23T18:31:49.427933 #60] FATAL -- : [a0559398-f5e6-459c-bec9-a0030051e7b6]   
[a0559398-f5e6-459c-bec9-a0030051e7b6] ActionController::RoutingError (No route matches [GET] "/undefined"):
[a0559398-f5e6-459c-bec9-a0030051e7b6]   
F, [2023-02-23T18:31:54.814345 #60] FATAL -- : [613d1ae7-1992-40db-9f9a-fd117c8c0bbb]   
[613d1ae7-1992-40db-9f9a-fd117c8c0bbb] ActionController::RoutingError (No route matches [GET] "/undefined"):
[613d1ae7-1992-40db-9f9a-fd117c8c0bbb]   
F, [2023-02-23T18:31:56.335632 #60] FATAL -- : [b5aab5b9-aca3-4551-a941-82b92339a914]   
[b5aab5b9-aca3-4551-a941-82b92339a914] ActionController::RoutingError (No route matches [GET] "/undefined"):
[b5aab5b9-aca3-4551-a941-82b92339a914]   
F, [2023-02-23T18:41:43.642997 #62] FATAL -- : [e804cea1-a223-4cb2-a6b1-f5ae2125731f]   
[e804cea1-a223-4cb2-a6b1-f5ae2125731f] ActionController::RoutingError (No route matches [GET] "/undefined"):
[e804cea1-a223-4cb2-a6b1-f5ae2125731f]   
F, [2023-02-23T18:41:46.512323 #62] FATAL -- : [a1a4fdcd-d8b2-4ade-b722-cf8be7d4258f]   
[a1a4fdcd-d8b2-4ade-b722-cf8be7d4258f] ActionController::RoutingError (No route matches [GET] "/undefined"):
[a1a4fdcd-d8b2-4ade-b722-cf8be7d4258f]   
F, [2023-02-23T18:41:46.829040 #62] FATAL -- : [cdb66f4d-072a-4942-84c5-aafc34738bda]   
[cdb66f4d-072a-4942-84c5-aafc34738bda] ActionController::RoutingError (No route matches [GET] "/undefined"):
[cdb66f4d-072a-4942-84c5-aafc34738bda]   
F, [2023-02-23T18:42:03.098335 #62] FATAL -- : [59137159-8f34-44f3-8edc-eb57acb49d9f]   
[59137159-8f34-44f3-8edc-eb57acb49d9f] ActionController::RoutingError (No route matches [GET] "/undefined"):
[59137159-8f34-44f3-8edc-eb57acb49d9f]   
F, [2023-02-23T18:42:22.482422 #62] FATAL -- : [b9cbca90-a126-4fd9-81b5-af0205a05e5e]   
[b9cbca90-a126-4fd9-81b5-af0205a05e5e] ActionController::RoutingError (No route matches [GET] "/undefined"):
[b9cbca90-a126-4fd9-81b5-af0205a05e5e]   
F, [2023-02-23T18:49:27.503585 #62] FATAL -- : [56d97205-7e44-4c48-9378-b6a4767425fe]   
[56d97205-7e44-4c48-9378-b6a4767425fe] ActionController::RoutingError (No route matches [GET] "/undefined"):
[56d97205-7e44-4c48-9378-b6a4767425fe]   
F, [2023-02-23T18:49:27.748623 #62] FATAL -- : [2cd55f29-b7fe-4e51-b9d5-9dbd7fcc1b3b]   
[2cd55f29-b7fe-4e51-b9d5-9dbd7fcc1b3b] ActionController::RoutingError (No route matches [GET] "/undefined"):
[2cd55f29-b7fe-4e51-b9d5-9dbd7fcc1b3b]   
F, [2023-02-23T18:53:03.307261 #60] FATAL -- : [32f4b233-47cd-403f-b830-78fdb0719ac9]   
[32f4b233-47cd-403f-b830-78fdb0719ac9] ActionController::UnknownFormat (ActionController::UnknownFormat):
[32f4b233-47cd-403f-b830-78fdb0719ac9]   
[32f4b233-47cd-403f-b830-78fdb0719ac9] responders (3.1.0) lib/action_controller/respond_with.rb:218:in `respond_with'
[32f4b233-47cd-403f-b830-78fdb0719ac9] devise (4.8.1) app/controllers/devise/sessions_controller.rb:14:in `new'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/abstract_controller/base.rb:215:in `process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal/rendering.rb:53:in `process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:234:in `block in process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/callbacks.rb:118:in `block in run_callbacks'
[32f4b233-47cd-403f-b830-78fdb0719ac9] route_translator (13.1.0) lib/route_translator/extensions/action_controller.rb:18:in `set_locale_from_url'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actiontext (7.0.4.2) lib/action_text/rendering.rb:20:in `with_renderer'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actiontext (7.0.4.2) lib/action_text/engine.rb:69:in `block (4 levels) in <class:Engine>'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `instance_exec'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/callbacks.rb:138:in `run_callbacks'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:233:in `process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal/rescue.rb:22:in `process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `block in instrument'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `instrument'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:66:in `process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal/params_wrapper.rb:259:in `process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activerecord (7.0.4.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/abstract_controller/base.rb:151:in `process'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionview (7.0.4.2) lib/action_view/rendering.rb:39:in `process'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal.rb:188:in `dispatch'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_controller/metal.rb:251:in `dispatch'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:49:in `dispatch'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:32:in `serve'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:18:in `block in <class:Constraints>'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:48:in `serve'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:50:in `block in serve'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `each'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `serve'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:852:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] apipie-rails (0.9.1) lib/apipie/static_dispatcher.rb:68:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] apipie-rails (0.9.1) lib/apipie/extractor/recorder.rb:137:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-attack (6.6.1) lib/rack/attack.rb:127:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] warden (1.2.9) lib/warden/manager.rb:36:in `block in call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] warden (1.2.9) lib/warden/manager.rb:34:in `catch'
[32f4b233-47cd-403f-b830-78fdb0719ac9] warden (1.2.9) lib/warden/manager.rb:34:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/tempfile_reaper.rb:15:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/etag.rb:27:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/conditional_get.rb:27:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/head.rb:12:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/http/permissions_policy.rb:38:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/http/content_security_policy.rb:36:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/session/abstract/id.rb:266:in `context'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/session/abstract/id.rb:260:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/cookies.rb:704:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/callbacks.rb:99:in `run_callbacks'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:25:in `block in call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rollbar (3.4.0) lib/rollbar.rb:145:in `scoped'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:22:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rollbar (3.4.0) lib/rollbar/middleware/rails/show_exceptions.rb:22:in `call_with_rollbar'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] lograge (0.12.0) lib/lograge/rails_ext/rack/logger.rb:18:in `call_app'
[32f4b233-47cd-403f-b830-78fdb0719ac9] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `block in call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `block in tagged'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:37:in `tagged'
[32f4b233-47cd-403f-b830-78fdb0719ac9] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `tagged'
[32f4b233-47cd-403f-b830-78fdb0719ac9] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/remote_ip.rb:93:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] request_store (1.5.1) lib/request_store/middleware.rb:19:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-timeout (0.6.3) lib/rack/timeout/core.rb:148:in `block in call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-timeout (0.6.3) lib/rack/timeout/support/timeout.rb:19:in `timeout'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-timeout (0.6.3) lib/rack/timeout/core.rb:147:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/request_id.rb:26:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/method_override.rb:24:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/runtime.rb:22:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/static.rb:23:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack (2.2.6.2) lib/rack/sendfile.rb:110:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] actionpack (7.0.4.2) lib/action_dispatch/middleware/host_authorization.rb:131:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] railties (7.0.4.2) lib/rails/engine.rb:530:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] railties (7.0.4.2) lib/rails/railtie.rb:226:in `public_send'
[32f4b233-47cd-403f-b830-78fdb0719ac9] railties (7.0.4.2) lib/rails/railtie.rb:226:in `method_missing'
[32f4b233-47cd-403f-b830-78fdb0719ac9] puma (6.0.2) lib/puma/configuration.rb:268:in `call'
[32f4b233-47cd-403f-b830-78fdb0719ac9] puma (6.0.2) lib/puma/request.rb:93:in `block in handle_request'
[32f4b233-47cd-403f-b830-78fdb0719ac9] puma (6.0.2) lib/puma/thread_pool.rb:340:in `with_force_shutdown'
[32f4b233-47cd-403f-b830-78fdb0719ac9] puma (6.0.2) lib/puma/request.rb:92:in `handle_request'
[32f4b233-47cd-403f-b830-78fdb0719ac9] puma (6.0.2) lib/puma/server.rb:429:in `process_client'
[32f4b233-47cd-403f-b830-78fdb0719ac9] puma (6.0.2) lib/puma/server.rb:232:in `block in run'
[32f4b233-47cd-403f-b830-78fdb0719ac9] puma (6.0.2) lib/puma/thread_pool.rb:147:in `block in spawn_thread'
F, [2023-02-23T18:53:06.210327 #60] FATAL -- : [0151de99-059f-4133-8da5-b685201afbea]   
[0151de99-059f-4133-8da5-b685201afbea] ActionController::UnknownFormat (ActionController::UnknownFormat):
[0151de99-059f-4133-8da5-b685201afbea]   
[0151de99-059f-4133-8da5-b685201afbea] responders (3.1.0) lib/action_controller/respond_with.rb:218:in `respond_with'
[0151de99-059f-4133-8da5-b685201afbea] devise (4.8.1) app/controllers/devise/sessions_controller.rb:14:in `new'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/abstract_controller/base.rb:215:in `process_action'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal/rendering.rb:53:in `process_action'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:234:in `block in process_action'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/callbacks.rb:118:in `block in run_callbacks'
[0151de99-059f-4133-8da5-b685201afbea] route_translator (13.1.0) lib/route_translator/extensions/action_controller.rb:18:in `set_locale_from_url'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[0151de99-059f-4133-8da5-b685201afbea] actiontext (7.0.4.2) lib/action_text/rendering.rb:20:in `with_renderer'
[0151de99-059f-4133-8da5-b685201afbea] actiontext (7.0.4.2) lib/action_text/engine.rb:69:in `block (4 levels) in <class:Engine>'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `instance_exec'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/callbacks.rb:138:in `run_callbacks'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:233:in `process_action'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal/rescue.rb:22:in `process_action'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `block in instrument'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `instrument'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:66:in `process_action'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal/params_wrapper.rb:259:in `process_action'
[0151de99-059f-4133-8da5-b685201afbea] activerecord (7.0.4.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/abstract_controller/base.rb:151:in `process'
[0151de99-059f-4133-8da5-b685201afbea] actionview (7.0.4.2) lib/action_view/rendering.rb:39:in `process'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal.rb:188:in `dispatch'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_controller/metal.rb:251:in `dispatch'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:49:in `dispatch'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:32:in `serve'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:18:in `block in <class:Constraints>'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:48:in `serve'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:50:in `block in serve'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `each'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `serve'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:852:in `call'
[0151de99-059f-4133-8da5-b685201afbea] apipie-rails (0.9.1) lib/apipie/static_dispatcher.rb:68:in `call'
[0151de99-059f-4133-8da5-b685201afbea] apipie-rails (0.9.1) lib/apipie/extractor/recorder.rb:137:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack-attack (6.6.1) lib/rack/attack.rb:127:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[0151de99-059f-4133-8da5-b685201afbea] warden (1.2.9) lib/warden/manager.rb:36:in `block in call'
[0151de99-059f-4133-8da5-b685201afbea] warden (1.2.9) lib/warden/manager.rb:34:in `catch'
[0151de99-059f-4133-8da5-b685201afbea] warden (1.2.9) lib/warden/manager.rb:34:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/tempfile_reaper.rb:15:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/etag.rb:27:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/conditional_get.rb:27:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/head.rb:12:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/http/permissions_policy.rb:38:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/http/content_security_policy.rb:36:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/session/abstract/id.rb:266:in `context'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/session/abstract/id.rb:260:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/cookies.rb:704:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/callbacks.rb:99:in `run_callbacks'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:25:in `block in call'
[0151de99-059f-4133-8da5-b685201afbea] rollbar (3.4.0) lib/rollbar.rb:145:in `scoped'
[0151de99-059f-4133-8da5-b685201afbea] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:22:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rollbar (3.4.0) lib/rollbar/middleware/rails/show_exceptions.rb:22:in `call_with_rollbar'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call'
[0151de99-059f-4133-8da5-b685201afbea] lograge (0.12.0) lib/lograge/rails_ext/rack/logger.rb:18:in `call_app'
[0151de99-059f-4133-8da5-b685201afbea] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `block in call'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `block in tagged'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:37:in `tagged'
[0151de99-059f-4133-8da5-b685201afbea] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `tagged'
[0151de99-059f-4133-8da5-b685201afbea] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/remote_ip.rb:93:in `call'
[0151de99-059f-4133-8da5-b685201afbea] request_store (1.5.1) lib/request_store/middleware.rb:19:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack-timeout (0.6.3) lib/rack/timeout/core.rb:148:in `block in call'
[0151de99-059f-4133-8da5-b685201afbea] rack-timeout (0.6.3) lib/rack/timeout/support/timeout.rb:19:in `timeout'
[0151de99-059f-4133-8da5-b685201afbea] rack-timeout (0.6.3) lib/rack/timeout/core.rb:147:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/request_id.rb:26:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/method_override.rb:24:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/runtime.rb:22:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/static.rb:23:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack (2.2.6.2) lib/rack/sendfile.rb:110:in `call'
[0151de99-059f-4133-8da5-b685201afbea] actionpack (7.0.4.2) lib/action_dispatch/middleware/host_authorization.rb:131:in `call'
[0151de99-059f-4133-8da5-b685201afbea] rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
[0151de99-059f-4133-8da5-b685201afbea] railties (7.0.4.2) lib/rails/engine.rb:530:in `call'
[0151de99-059f-4133-8da5-b685201afbea] railties (7.0.4.2) lib/rails/railtie.rb:226:in `public_send'
[0151de99-059f-4133-8da5-b685201afbea] railties (7.0.4.2) lib/rails/railtie.rb:226:in `method_missing'
[0151de99-059f-4133-8da5-b685201afbea] puma (6.0.2) lib/puma/configuration.rb:268:in `call'
[0151de99-059f-4133-8da5-b685201afbea] puma (6.0.2) lib/puma/request.rb:93:in `block in handle_request'
[0151de99-059f-4133-8da5-b685201afbea] puma (6.0.2) lib/puma/thread_pool.rb:340:in `with_force_shutdown'
[0151de99-059f-4133-8da5-b685201afbea] puma (6.0.2) lib/puma/request.rb:92:in `handle_request'
[0151de99-059f-4133-8da5-b685201afbea] puma (6.0.2) lib/puma/server.rb:429:in `process_client'
[0151de99-059f-4133-8da5-b685201afbea] puma (6.0.2) lib/puma/server.rb:232:in `block in run'
[0151de99-059f-4133-8da5-b685201afbea] puma (6.0.2) lib/puma/thread_pool.rb:147:in `block in spawn_thread'
F, [2023-02-24T07:58:45.236863 #62] FATAL -- : [2e778093-bb61-4ef4-82e5-76ff53c3f019]   
[2e778093-bb61-4ef4-82e5-76ff53c3f019] ActionController::UnknownFormat (ActionController::UnknownFormat):
[2e778093-bb61-4ef4-82e5-76ff53c3f019]   
[2e778093-bb61-4ef4-82e5-76ff53c3f019] responders (3.1.0) lib/action_controller/respond_with.rb:218:in `respond_with'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] devise (4.8.1) app/controllers/devise/sessions_controller.rb:14:in `new'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/abstract_controller/base.rb:215:in `process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal/rendering.rb:53:in `process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:234:in `block in process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/callbacks.rb:118:in `block in run_callbacks'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] route_translator (13.1.0) lib/route_translator/extensions/action_controller.rb:18:in `set_locale_from_url'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actiontext (7.0.4.2) lib/action_text/rendering.rb:20:in `with_renderer'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actiontext (7.0.4.2) lib/action_text/engine.rb:69:in `block (4 levels) in <class:Engine>'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `instance_exec'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/callbacks.rb:138:in `run_callbacks'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:233:in `process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal/rescue.rb:22:in `process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `block in instrument'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `instrument'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:66:in `process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal/params_wrapper.rb:259:in `process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activerecord (7.0.4.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/abstract_controller/base.rb:151:in `process'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionview (7.0.4.2) lib/action_view/rendering.rb:39:in `process'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal.rb:188:in `dispatch'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_controller/metal.rb:251:in `dispatch'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:49:in `dispatch'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:32:in `serve'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:18:in `block in <class:Constraints>'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:48:in `serve'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:50:in `block in serve'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `each'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `serve'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:852:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] apipie-rails (0.9.1) lib/apipie/static_dispatcher.rb:68:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] apipie-rails (0.9.1) lib/apipie/extractor/recorder.rb:137:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-attack (6.6.1) lib/rack/attack.rb:127:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] warden (1.2.9) lib/warden/manager.rb:36:in `block in call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] warden (1.2.9) lib/warden/manager.rb:34:in `catch'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] warden (1.2.9) lib/warden/manager.rb:34:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/tempfile_reaper.rb:15:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/etag.rb:27:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/conditional_get.rb:27:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/head.rb:12:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/http/permissions_policy.rb:38:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/http/content_security_policy.rb:36:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/session/abstract/id.rb:266:in `context'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/session/abstract/id.rb:260:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/cookies.rb:704:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/callbacks.rb:99:in `run_callbacks'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:25:in `block in call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rollbar (3.4.0) lib/rollbar.rb:145:in `scoped'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:22:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rollbar (3.4.0) lib/rollbar/middleware/rails/show_exceptions.rb:22:in `call_with_rollbar'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] lograge (0.12.0) lib/lograge/rails_ext/rack/logger.rb:18:in `call_app'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `block in call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `block in tagged'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:37:in `tagged'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `tagged'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/remote_ip.rb:93:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] request_store (1.5.1) lib/request_store/middleware.rb:19:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-timeout (0.6.3) lib/rack/timeout/core.rb:148:in `block in call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-timeout (0.6.3) lib/rack/timeout/support/timeout.rb:19:in `timeout'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-timeout (0.6.3) lib/rack/timeout/core.rb:147:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/request_id.rb:26:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/method_override.rb:24:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/runtime.rb:22:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/static.rb:23:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack (2.2.6.2) lib/rack/sendfile.rb:110:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] actionpack (7.0.4.2) lib/action_dispatch/middleware/host_authorization.rb:131:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] railties (7.0.4.2) lib/rails/engine.rb:530:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] railties (7.0.4.2) lib/rails/railtie.rb:226:in `public_send'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] railties (7.0.4.2) lib/rails/railtie.rb:226:in `method_missing'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] puma (6.0.2) lib/puma/configuration.rb:268:in `call'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] puma (6.0.2) lib/puma/request.rb:93:in `block in handle_request'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] puma (6.0.2) lib/puma/thread_pool.rb:340:in `with_force_shutdown'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] puma (6.0.2) lib/puma/request.rb:92:in `handle_request'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] puma (6.0.2) lib/puma/server.rb:429:in `process_client'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] puma (6.0.2) lib/puma/server.rb:232:in `block in run'
[2e778093-bb61-4ef4-82e5-76ff53c3f019] puma (6.0.2) lib/puma/thread_pool.rb:147:in `block in spawn_thread'
F, [2023-02-24T08:00:05.451709 #62] FATAL -- : [bee922d8-b964-4d45-bbad-9dc83aee6117]   
[bee922d8-b964-4d45-bbad-9dc83aee6117] ActionController::UnknownFormat (ActionController::UnknownFormat):
[bee922d8-b964-4d45-bbad-9dc83aee6117]   
[bee922d8-b964-4d45-bbad-9dc83aee6117] responders (3.1.0) lib/action_controller/respond_with.rb:218:in `respond_with'
[bee922d8-b964-4d45-bbad-9dc83aee6117] devise (4.8.1) app/controllers/devise/sessions_controller.rb:14:in `new'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal/basic_implicit_render.rb:6:in `send_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/abstract_controller/base.rb:215:in `process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal/rendering.rb:53:in `process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:234:in `block in process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/callbacks.rb:118:in `block in run_callbacks'
[bee922d8-b964-4d45-bbad-9dc83aee6117] route_translator (13.1.0) lib/route_translator/extensions/action_controller.rb:18:in `set_locale_from_url'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actiontext (7.0.4.2) lib/action_text/rendering.rb:20:in `with_renderer'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actiontext (7.0.4.2) lib/action_text/engine.rb:69:in `block (4 levels) in <class:Engine>'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `instance_exec'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/callbacks.rb:127:in `block in run_callbacks'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/callbacks.rb:138:in `run_callbacks'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/abstract_controller/callbacks.rb:233:in `process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal/rescue.rb:22:in `process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:67:in `block in process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `block in instrument'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/notifications/instrumenter.rb:24:in `instrument'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/notifications.rb:206:in `instrument'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal/instrumentation.rb:66:in `process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal/params_wrapper.rb:259:in `process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activerecord (7.0.4.2) lib/active_record/railties/controller_runtime.rb:27:in `process_action'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/abstract_controller/base.rb:151:in `process'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionview (7.0.4.2) lib/action_view/rendering.rb:39:in `process'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal.rb:188:in `dispatch'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_controller/metal.rb:251:in `dispatch'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:49:in `dispatch'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:32:in `serve'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:18:in `block in <class:Constraints>'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/routing/mapper.rb:48:in `serve'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:50:in `block in serve'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `each'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/journey/router.rb:32:in `serve'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/routing/route_set.rb:852:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] apipie-rails (0.9.1) lib/apipie/static_dispatcher.rb:68:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] apipie-rails (0.9.1) lib/apipie/extractor/recorder.rb:137:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-attack (6.6.1) lib/rack/attack.rb:127:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-throttle (0.7.0) lib/rack/throttle/limiter.rb:35:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] warden (1.2.9) lib/warden/manager.rb:36:in `block in call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] warden (1.2.9) lib/warden/manager.rb:34:in `catch'
[bee922d8-b964-4d45-bbad-9dc83aee6117] warden (1.2.9) lib/warden/manager.rb:34:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/tempfile_reaper.rb:15:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/etag.rb:27:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/conditional_get.rb:27:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/head.rb:12:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/http/permissions_policy.rb:38:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/http/content_security_policy.rb:36:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/session/abstract/id.rb:266:in `context'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/session/abstract/id.rb:260:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/cookies.rb:704:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:27:in `block in call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/callbacks.rb:99:in `run_callbacks'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/callbacks.rb:26:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:25:in `block in call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rollbar (3.4.0) lib/rollbar.rb:145:in `scoped'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rollbar (3.4.0) lib/rollbar/middleware/rails/rollbar.rb:22:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/debug_exceptions.rb:28:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rollbar (3.4.0) lib/rollbar/middleware/rails/show_exceptions.rb:22:in `call_with_rollbar'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/show_exceptions.rb:26:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] lograge (0.12.0) lib/lograge/rails_ext/rack/logger.rb:18:in `call_app'
[bee922d8-b964-4d45-bbad-9dc83aee6117] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `block in call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `block in tagged'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:37:in `tagged'
[bee922d8-b964-4d45-bbad-9dc83aee6117] activesupport (7.0.4.2) lib/active_support/tagged_logging.rb:99:in `tagged'
[bee922d8-b964-4d45-bbad-9dc83aee6117] railties (7.0.4.2) lib/rails/rack/logger.rb:25:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/remote_ip.rb:93:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] request_store (1.5.1) lib/request_store/middleware.rb:19:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-timeout (0.6.3) lib/rack/timeout/core.rb:148:in `block in call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-timeout (0.6.3) lib/rack/timeout/support/timeout.rb:19:in `timeout'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-timeout (0.6.3) lib/rack/timeout/core.rb:147:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/request_id.rb:26:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/method_override.rb:24:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/runtime.rb:22:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/executor.rb:14:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/static.rb:23:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack (2.2.6.2) lib/rack/sendfile.rb:110:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] actionpack (7.0.4.2) lib/action_dispatch/middleware/host_authorization.rb:131:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] rack-cors (1.1.1) lib/rack/cors.rb:100:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] railties (7.0.4.2) lib/rails/engine.rb:530:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] railties (7.0.4.2) lib/rails/railtie.rb:226:in `public_send'
[bee922d8-b964-4d45-bbad-9dc83aee6117] railties (7.0.4.2) lib/rails/railtie.rb:226:in `method_missing'
[bee922d8-b964-4d45-bbad-9dc83aee6117] puma (6.0.2) lib/puma/configuration.rb:268:in `call'
[bee922d8-b964-4d45-bbad-9dc83aee6117] puma (6.0.2) lib/puma/request.rb:93:in `block in handle_request'
[bee922d8-b964-4d45-bbad-9dc83aee6117] puma (6.0.2) lib/puma/thread_pool.rb:340:in `with_force_shutdown'
[bee922d8-b964-4d45-bbad-9dc83aee6117] puma (6.0.2) lib/puma/request.rb:92:in `handle_request'
[bee922d8-b964-4d45-bbad-9dc83aee6117] puma (6.0.2) lib/puma/server.rb:429:in `process_client'
[bee922d8-b964-4d45-bbad-9dc83aee6117] puma (6.0.2) lib/puma/server.rb:232:in `block in run'
[bee922d8-b964-4d45-bbad-9dc83aee6117] puma (6.0.2) lib/puma/thread_pool.rb:147:in `block in spawn_thread'
F, [2023-03-13T14:48:35.100933 #61] FATAL -- : [9da5e2a9-c0d2-4f43-ae19-0a195128c33c]   
[9da5e2a9-c0d2-4f43-ae19-0a195128c33c] ActionController::RoutingError (No route matches [GET] "/fr/utilisateurs/s%27inscrire"):
[9da5e2a9-c0d2-4f43-ae19-0a195128c33c]
Raifuruu commented 1 year ago

I updated the docker compose to pwpush-postgres:1.26.11 and the file upload does not work at all

Raifuruu commented 1 year ago

No sorry, the upload works, I'm trying with a big file.

But I lost the colour customisation I made, is that normal?

Raifuruu commented 1 year ago

image

Raifuruu commented 1 year ago

I have switched back to release for the moment as it does not fix the problem

pglombardo commented 1 year ago

HI @Raifuruu - just a heads up that I've gotten pulled away by my day job but will take another try at fixing this soon.

Raifuruu commented 1 year ago

Hi @pglombardo - There are no worries! Work before projects is normal!

TargetCrafter commented 11 months ago

Any updates on this? I would like to use it with very large files (50GB+ if possible), but right now it fails to upload a 5GB ISO after +-1.3GB (as seen in the storage volume) with the below error:

Screenshot 2023-07-26 095447 Screenshot 2023-07-26 095631
pglombardo commented 11 months ago

Hi @TargetCrafter @Raifuruu - not a fix but items:

If either of you have a chance to re-confirm the bug with v1.30.11 (building now) it would be much appreciated.

updated to v1.30.11

pglombardo commented 9 months ago

Hi all - late update. I discovered in another issue that the 403 forbidden was being caused by the application throttling. I've since increased those defaults and that issue appears to be resolved now.

Have either of you made any progress on 50GB files?

TargetCrafter commented 9 months ago

@pglombardo I've updated my container, but it seems email verification is now required (i used to be able to sign in without authenticating my email). I'm getting stuck on some 500 errors like in #1355. I have tried to change my config like the suggestions in that issue, but i still can't get it working. I'll continue with the current issue in #1355 and will return to test here when i fix the SMPT.

pglombardo commented 9 months ago

As a temporary work-around, you can manually confirm your user account through the rails console. This is direct database modification so be careful.

In the Docker container shell:

bin/rails console
user = User.where(email: "your@email.com").first
user.confirm
user.save
exit
TargetCrafter commented 9 months ago

Thanks, that got me signed in at least.

I tried to upload a iso file (5.6GB) and it seemed to go well, but the loading bar turned red at the end and it only seems to have uploaded 916MB: image image

TargetCrafter commented 8 months ago

Any update on this? Large files would be a huge boost to the usefulness of this app for us.

pglombardo commented 8 months ago

Hi @TargetCrafter - I'd love to add support for this but it's a larger effort and I haven't had time with my day job and all. I can only confirm that I will get to this eventually - just not sure when yet.

The alternative is that someone from the community takes up the task and submits a PR.

Raifuruu commented 3 weeks ago

Hello, for information I still have the problem on the latest version, on a 200 MB file

https://kspass.keycloud.fr/fr