Skip to content

Commit

Permalink
core: Raise timeout when starting site for sitetest
Browse files Browse the repository at this point in the history
This is especially a problem with large sets of test fixtures.
  • Loading branch information
ddeboer committed Jan 25, 2017
1 parent 11ef906 commit 5c6d1df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/support/z_sites_manager.erl
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ is_module(Module) ->
%% should only be called when you are certain the site has not
%% completed starting up, otherwise it will block infinitely.
await_startup(Context = #context{}) ->
case z_notifier:await(module_ready, 30*1000, Context) of
case z_notifier:await(module_ready, 60*1000, Context) of
{ok, _} ->
ok;
E -> E
Expand Down

0 comments on commit 5c6d1df

Please sign in to comment.