From f9c47b0fb50c983b9469dec6667cb31db34b3ab0 Mon Sep 17 00:00:00 2001 From: Sam Edwards Date: Wed, 9 Oct 2013 01:47:08 -0600 Subject: [PATCH] Add missing _registeredChannels attribute to AIR. --- direct/src/distributed/AstronInternalRepository.py | 1 + 1 file changed, 1 insertion(+) diff --git a/direct/src/distributed/AstronInternalRepository.py b/direct/src/distributed/AstronInternalRepository.py index de37920c2d..dea27cbecf 100644 --- a/direct/src/distributed/AstronInternalRepository.py +++ b/direct/src/distributed/AstronInternalRepository.py @@ -32,6 +32,7 @@ class AstronInternalRepository(ConnectionRepository): maxChannels = self.config.GetInt('air-channel-allocation', 1000000) self.channelAllocator = UniqueIdAllocator(baseChannel, baseChannel+maxChannels-1) + self._registeredChannels = set() self.ourChannel = self.allocateChannel()