From 1954ffc99949556566aeaeb315de14d9e9118042 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Tue, 24 Jul 2018 03:57:01 +0100 Subject: [PATCH] fix argument order --- .../src/main/groovy/com/muwire/hostcache/HostCache.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host-cache/src/main/groovy/com/muwire/hostcache/HostCache.groovy b/host-cache/src/main/groovy/com/muwire/hostcache/HostCache.groovy index 008917d8..c35aead9 100644 --- a/host-cache/src/main/groovy/com/muwire/hostcache/HostCache.groovy +++ b/host-cache/src/main/groovy/com/muwire/hostcache/HostCache.groovy @@ -117,7 +117,7 @@ public class HostCache { break case "CrawlerPong": println "CrawlerPong" - crawler.handleCrawlerPong(sender, payload) + crawler.handleCrawlerPong(payload, sender) break default: println "WARN: Unexpected message type ${payload.type}, dropping"