mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
fix: [zmq importer] fix object source name
This commit is contained in:
parent
2e38a96686
commit
4529a76d13
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class ZMQModuleImporter(AbstractModule):
|
|||
|
||||
obj_id, gzip64encoded = message.split(' ', 1) # TODO ADD LOGS
|
||||
splitted = obj_id.split('>>', 1)
|
||||
if splitted == 2:
|
||||
if len(splitted) == 2:
|
||||
feeder_name, obj_id = splitted
|
||||
else:
|
||||
feeder_name = self.default_feeder_name
|
||||
|
|
Loading…
Reference in a new issue