Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7559591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T12:40:33+00:00 2026-05-30T12:40:33+00:00

I have an erlang module with behaviour gen_server. Now, I have: init(_Args) -> erlang:send_after(?PROCESS_STATE_INTERVAL,self(),processState),

  • 0

I have an erlang module with behaviour gen_server.

Now, I have:

init(_Args) ->
    erlang:send_after(?PROCESS_STATE_INTERVAL,self(),processState),
    {ok, []}.

and

handle_info(processState, _State)->
    {ok, NewState} = gen_server:call(self(), {updateLvls}), %works fine, tested
    timer:send_after(?PROCESS_STATE_INTERVAL,self(),processState),
    {noreply, NewState}.

When I start it with something like {ok, Test}=gen_server:start_link({local,challenge_manager},challenge_manager,[],[]). after a few seconds I get ** exception error: {timeout,{gen_server,call,[<0.329.0>,{updateLvls}]}}

Am I doing something wrong??

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T12:40:34+00:00Added an answer on May 30, 2026 at 12:40 pm

    You cannot call your own gen_server from within itself. That will result in a dead lock (which is what you see). The server process is busy handling your first request (since you haven’t returned yet) and will queue the second request (which is made from the handling of the first), thus dead lock.

    To solve this, either create a library function which both handle_call and handle_info uses, or take a look at the reply/2 function which will let you do asynchronous replies (if you return {noreply, ...} from your handle_call function).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have these code start() -> spawn(?MODULE, init, [self()]). init(From) -> spawn(?MODULE, broadcast, []).
I try to write application to my Erlang program. I have test_app.erl: -module(test_app). -behaviour(application).
I have erlang application. In this application i run process with spawn(?MODULE, my_foo, [my_param1,
I'm writing EUnit tests for Erlang code. I have a source module: -module(prob_list). -export([intersection/2,union/2]).
I have a generated string that contains the code for an erlang module. Is
Let say I have Erlang enterprise application: -module(hello). -export([start/0]). start() -> spawn(fun() -> loop()
Assume that we have N erlang nodes, running same application. I want to share
Normally if I'd like to have an Erlang process timeout I would use the
Let's say that I have an Erlang function, with spec. -spec foo(integer(), string()) ->
I have been trying to learn Erlang and have been running into some problems

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.