r12543

r12543

Hello,
I am getting the following error. Code is also mentioned below.

%UndefinedFunctionError{arity: 0, function: :offset, message: nil, module: nil, reason: nil}

{offset, _} = Integer.parse(headers["upload-offset"]). # headers["upload-offset"] returns a valid result everytime. "0", "452342" etc
upload_info = UploadCache.get(identifier)
if  offset != upload_info.offset do. # here it crashes and throw the error.
        ... # doing something here
else

This does not happen every time. I found this issue in the production sometimes and I am not even able to reproduce this on my local machine. Can anyone give their inputs in what scenarios, this type of error can occur?


Stack trace

msg:Ranch listener OkApi.Router.HTTP, connection process #PID<0.19205.307>, stream 3 had its request process #PID<0.18116.307> exit with reason {{%UndefinedFunctionError{arity: 0, function: :offset, message: nil, module: nil, reason: nil}, 
[{nil, :offset, 
[],
[]}, {ExTus.Actions, :patch, 3, 
  [file: 'lib/actions.ex', line: 81]}, {OkApi.TusRouter, :"-do_match/4-fun-7-", 2, 
  [file: 'lib/routers/tus_router.ex', line: 25]}, {OkApi.TusRouter, :dispatch, 2, 
  [file: 'lib/plug/router.ex', line: 284]}, {OkApi.TusRouter, :plug_builder_call, 2, 
  [file: 'lib/routers/tus_router.ex', line: 1]}, {Plug, :forward, 4, 
  [file: 'lib/plug.ex', line: 168]}, {OkApi.Router, :dispatch, 2, 
  [file: 'lib/plug/router.ex', line: 284]}, {OkApi.Router, :plug_builder_call, 2, 
  [file: 'lib/Router.ex', line: 1]}]}, {OkApi.Router, :call, 
  [%Plug.Conn{adapter: {Plug.Cowboy.Conn, :...}, assigns: %{}, before_send: 
  [], body_params: %Plug.Conn.Unfetched{aspect: :body_params}, cookies: %Plug.Conn.Unfetched{aspect: :cookies}, halted: false, host: "<some-host>", method: "PATCH", owner: #PID<0.18116.307>, params: %Plug.Conn.Unfetched{aspect: :params}, path_info: 
  ["files", "<identifier>"], path_params: %{}, port: 80, private: %{}, query_params: %Plug.Conn.Unfetched{aspect: :query_params}, query_string: "", remote_ip: {..., .., ., ...}, req_cookies: %Plug.Conn.Unfetched{aspect: :cookies}, req_headers: 
  h=[
    {"accept-encoding", "gzip"}, 
    {"authorization", "<jwt_token>"}, 
    {"connection", "keep-alive"}, 
    {"content-type", "application/offset+octet-stream"}, 
    {"host", "<some-host>.com"}, 
    {"migration_ver", "2"}, 
    {"newrelic", "...."}, 
    {"traceparent", "..."}, 
    {"tracestate", ",..."}, 
    {"tus-resumable", "1.0.0"}, 
    {"upload-metadata", "filename Y2JiMjA2OTgtZGNmYy00MTgwLWE3M2MtYzYxMGZjOTg5YWE5Lm1wNA=="}, 
    {"upload-offset", "0"}, 
    {"user-agent", "Dalvik/2.1.0 (Linux; U; Android 9; CPH2083 Build/PPR1.180610.011)"}, 
    {"user_id", "....."}, 
    {"x-forwarded-for", "....."}, 
    {"x-forwarded-port", "443"}, 
    {"x-forwarded-proto", "https"}, 
    {"x-newrelic-id", "....."}
  ], request_path: "/files/<identifier>", resp_body: nil, resp_cookies: %{}, resp_headers: 
  [{"cache-control", "max-age=0, private, must-revalidate"}], scheme: :http, script_name: 
  [], secret_key_base: nil, state: :unset, status: nil}, 
  []]}} and stacktrace 
  []

This is an open source function, here is the link extus/lib/actions.ex at 273f8b15588743787ca8a9abcb9d815ee2c9f8ae · bluzky/extus · GitHub

Thanks

Showing Posts 1 to 5

kokolegorille

kokolegorille

Hello and welcome,

Can You provide the full error stack?

And the line where the error occurs :slight_smile:

r12543

r12543 OP

this line..

Stack trace

msg:Ranch listener OkApi.Router.HTTP, connection process #PID<0.19205.307>, stream 3 had its request process #PID<0.18116.307> exit with reason {{%UndefinedFunctionError{arity: 0, function: :offset, message: nil, module: nil, reason: nil}, 
[{nil, :offset, 
[],
[]}, {ExTus.Actions, :patch, 3, 
  [file: 'lib/actions.ex', line: 81]}, {OkApi.TusRouter, :"-do_match/4-fun-7-", 2, 
  [file: 'lib/routers/tus_router.ex', line: 25]}, {OkApi.TusRouter, :dispatch, 2, 
  [file: 'lib/plug/router.ex', line: 284]}, {OkApi.TusRouter, :plug_builder_call, 2, 
  [file: 'lib/routers/tus_router.ex', line: 1]}, {Plug, :forward, 4, 
  [file: 'lib/plug.ex', line: 168]}, {OkApi.Router, :dispatch, 2, 
  [file: 'lib/plug/router.ex', line: 284]}, {OkApi.Router, :plug_builder_call, 2, 
  [file: 'lib/Router.ex', line: 1]}]}, {OkApi.Router, :call, 
  [%Plug.Conn{adapter: {Plug.Cowboy.Conn, :...}, assigns: %{}, before_send: 
  [], body_params: %Plug.Conn.Unfetched{aspect: :body_params}, cookies: %Plug.Conn.Unfetched{aspect: :cookies}, halted: false, host: "<some-host>", method: "PATCH", owner: #PID<0.18116.307>, params: %Plug.Conn.Unfetched{aspect: :params}, path_info: 
  ["files", "<identifier>"], path_params: %{}, port: 80, private: %{}, query_params: %Plug.Conn.Unfetched{aspect: :query_params}, query_string: "", remote_ip: {..., .., ., ...}, req_cookies: %Plug.Conn.Unfetched{aspect: :cookies}, req_headers: 
  h=[
    {"accept-encoding", "gzip"}, 
    {"authorization", "<jwt_token>"}, 
    {"connection", "keep-alive"}, 
    {"content-type", "application/offset+octet-stream"}, 
    {"host", "<some-host>.com"}, 
    {"migration_ver", "2"}, 
    {"newrelic", "...."}, 
    {"traceparent", "..."}, 
    {"tracestate", ",..."}, 
    {"tus-resumable", "1.0.0"}, 
    {"upload-metadata", "filename Y2JiMjA2OTgtZGNmYy00MTgwLWE3M2MtYzYxMGZjOTg5YWE5Lm1wNA=="}, 
    {"upload-offset", "0"}, 
    {"user-agent", "Dalvik/2.1.0 (Linux; U; Android 9; CPH2083 Build/PPR1.180610.011)"}, 
    {"user_id", "....."}, 
    {"x-forwarded-for", "....."}, 
    {"x-forwarded-port", "443"}, 
    {"x-forwarded-proto", "https"}, 
    {"x-newrelic-id", "....."}
  ], request_path: "/files/<identifier>", resp_body: nil, resp_cookies: %{}, resp_headers: 
  [{"cache-control", "max-age=0, private, must-revalidate"}], scheme: :http, script_name: 
  [], secret_key_base: nil, state: :unset, status: nil}, 
  []]}} and stacktrace 
  []

This is an open source function, here is the link extus/lib/actions.ex at 273f8b15588743787ca8a9abcb9d815ee2c9f8ae · bluzky/extus · GitHub

michallepicki

michallepicki

The error is about upload_info being nil. nil.offset fails with that error

kokolegorille

kokolegorille

Yes, as @michallepicki said…

You do not receive what You expect here.

r12543

r12543 OP

AAAHH…that might be it. Thanks a lot, I was thinking that the offset variable is causing the issue. Let me check that. Thanks again.

— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
Onor.io
I have what I’ve heard referred to as a “lookup table” in my database. This is a way of assigning codes to common values. One common lo...
New
jaybe78
Hello, I’m developing a online persistent chat system (what’s app) like using elixir/dynamodb/aws for a mobile app(flutter). The diffic...
New
Trolleger
What approach to take when sending live updates to “random” users Hi! I have a question, I have a little chat app, and when I create a DM...
New
matt-savvy
Anyone here using Honeybadger? My Honeybadger account is being overwhelmed with noise from some bots. Seeing a lot of Bandit.HTTPError...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New

Other Trending Topics Top

garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New
netoum
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
wintermeyer
There are three potential reasons for members of this forum to have a look at https://vutuv.de You are tired or annoyed of LinkedIn. Yo...
New
webofbits
Aludel - LLM Evaluation Workbench Aludel is an embeddable Phoenix LiveView dashboard for evaluating and comparing LLM prompts across mult...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews