diff options
author | Spottedleaf <[email protected]> | 2024-07-17 10:24:53 -0700 |
---|---|---|
committer | Spottedleaf <[email protected]> | 2024-07-17 10:28:32 -0700 |
commit | 00b949f1bbbf444e2b5e7b8de7c9b14fbd2133c6 (patch) | |
tree | 82639515bc5e9ae00c1e639e72137ed51e1ac688 /patches/server/0261-Don-t-sleep-after-profile-lookups-if-not-needed.patch | |
parent | 967f98aa81da851740aeb429778e46159fd188df (diff) | |
download | Paper-00b949f1bbbf444e2b5e7b8de7c9b14fbd2133c6.tar.gz Paper-00b949f1bbbf444e2b5e7b8de7c9b14fbd2133c6.zip |
Remove Moonrise utils to MCUtils, remove duplicated/unused utils
Diffstat (limited to 'patches/server/0261-Don-t-sleep-after-profile-lookups-if-not-needed.patch')
-rw-r--r-- | patches/server/0261-Don-t-sleep-after-profile-lookups-if-not-needed.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/patches/server/0261-Don-t-sleep-after-profile-lookups-if-not-needed.patch b/patches/server/0261-Don-t-sleep-after-profile-lookups-if-not-needed.patch new file mode 100644 index 0000000000..d871ee76b6 --- /dev/null +++ b/patches/server/0261-Don-t-sleep-after-profile-lookups-if-not-needed.patch @@ -0,0 +1,33 @@ +From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 +From: Aikar <[email protected]> +Date: Tue, 23 Oct 2018 20:25:05 -0400 +Subject: [PATCH] Don't sleep after profile lookups if not needed + +Mojang was sleeping even if we had no more requests to go after +the current one finished, resulting in 100ms lost per profile lookup + +diff --git a/src/main/java/com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.java b/src/main/java/com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.java +index b87546f0061458b2b919a1fe00dde1f4eea6cb3e..55dac5edf694b3bf82b475a71e3524a1bce98882 100644 +--- a/src/main/java/com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.java ++++ b/src/main/java/com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.java +@@ -44,6 +44,7 @@ public class YggdrasilGameProfileRepository implements GameProfileRepository { + .collect(Collectors.toSet()); + + final int page = 0; ++ boolean hasRequested = false; // Paper - Don't sleep after profile lookups if not needed + + for (final List<String> request : Iterables.partition(criteria, ENTRIES_PER_PAGE)) { + final List<String> normalizedRequest = request.stream().map(YggdrasilGameProfileRepository::normalizeName).toList(); +@@ -75,6 +76,12 @@ public class YggdrasilGameProfileRepository implements GameProfileRepository { + LOGGER.debug("Couldn't find profile {}", name); + callback.onProfileLookupFailed(name, new ProfileNotFoundException("Server did not find the requested profile")); + } ++ // Paper start - Don't sleep after profile lookups if not needed ++ if (!hasRequested) { ++ hasRequested = true; ++ continue; ++ } ++ // Paper end - Don't sleep after profile lookups if not needed + + try { + Thread.sleep(DELAY_BETWEEN_PAGES); |