From 414174985b8973692196f1e6cc206d1accd7465d Mon Sep 17 00:00:00 2001 From: Aleksej Date: Tue, 14 Jun 2022 01:05:39 +0200 Subject: [PATCH] add host and port in configuration --- test/testbot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testbot b/test/testbot index 1254b22..380524d 100755 --- a/test/testbot +++ b/test/testbot @@ -130,6 +130,6 @@ if __name__ == '__main__': xmpp.register_plugin('xep_0199') # XMPP Ping # Connect to the XMPP server and start processing XMPP stanzas. - xmpp.connect(address=("localhost",25222)) + xmpp.connect(address=("127.0.0.1",25222)) xmpp.process(forever=False)