diff options
author | Raimo Niskanen <[email protected]> | 2019-03-04 13:11:10 +0100 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2019-03-04 13:11:31 +0100 |
commit | 7c63a98c28d477f73633e954bc287404d4889680 (patch) | |
tree | 5541f3b1ea5f7e966d2c0ed4ed08e8901e4e0a05 /lib/kernel/src/inet_db.erl | |
parent | fe0ed97c5f46842c279eda95d1332f4ed2ea3e0d (diff) | |
download | otp-7c63a98c28d477f73633e954bc287404d4889680.tar.gz otp-7c63a98c28d477f73633e954bc287404d4889680.tar.bz2 otp-7c63a98c28d477f73633e954bc287404d4889680.zip |
Set early enough start time
Adhering to the review in GitHub PR #2066:
The start time should be set so the resolver file can get
re-read as soon as possible to not get the whole timeout time
before detecting that the resolver file has been created.
Diffstat (limited to 'lib/kernel/src/inet_db.erl')
-rw-r--r-- | lib/kernel/src/inet_db.erl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/kernel/src/inet_db.erl b/lib/kernel/src/inet_db.erl index d87bbb114f..3f5a2ea5ee 100644 --- a/lib/kernel/src/inet_db.erl +++ b/lib/kernel/src/inet_db.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2016. All Rights Reserved. +%% Copyright Ericsson AB 1997-2019. All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. @@ -1224,8 +1224,9 @@ handle_set_file(Option, Fname, TagTm, TagInfo, ParseFun, From, _ -> <<>> end; _ -> - ets:insert(Db, {TagTm, times()}), - <<>> + ets:insert(Db, {TagInfo, undefined}), + TimeZero = - (?RES_FILE_UPDATE_TM + 1), % Early enough + ets:insert(Db, {TagTm, TimeZero}) end, handle_set_file(ParseFun, Bin, From, State); false -> {reply,error,State} |