aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0266-Don-t-sleep-after-profile-lookups-if-not-needed.patch
diff options
context:
space:
mode:
authorJake Potrebic <[email protected]>2024-04-23 10:02:08 -0700
committerJake Potrebic <[email protected]>2024-04-23 10:02:08 -0700
commitabc49bf069cc52230e4b909b4264e5e3534ef853 (patch)
tree086cb86efffac15b85784c70c87612ad57698c8d /patches/server/0266-Don-t-sleep-after-profile-lookups-if-not-needed.patch
parentf4c7d373e4a1aff23539fe099745bf29a28559b9 (diff)
downloadPaper-abc49bf069cc52230e4b909b4264e5e3534ef853.tar.gz
Paper-abc49bf069cc52230e4b909b4264e5e3534ef853.zip
Begin update to 1.20.5
Diffstat (limited to 'patches/server/0266-Don-t-sleep-after-profile-lookups-if-not-needed.patch')
-rw-r--r--patches/server/0266-Don-t-sleep-after-profile-lookups-if-not-needed.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/patches/server/0266-Don-t-sleep-after-profile-lookups-if-not-needed.patch b/patches/server/0266-Don-t-sleep-after-profile-lookups-if-not-needed.patch
deleted file mode 100644
index d871ee76b6..0000000000
--- a/patches/server/0266-Don-t-sleep-after-profile-lookups-if-not-needed.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-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);