Skip to content

Commit 24972fd

Browse files
committed
Change to using stripProxy instead of _impl
1 parent a070241 commit 24972fd

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

python/GangaRobot/Lib/Core/ThreadedSubmitter.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
from Ganga.Utility.logging import getLogger
99
from Ganga.GPI import load
1010
from Ganga.Core.GangaThread.MTRunner import MTRunner, Data, Algorithm
11+
from Ganga.GPIDev.Base.Proxy import stripProxy
1112

1213
logger = getLogger()
1314

@@ -49,7 +50,7 @@ def process(self, item):
4950
jobs = load(match)
5051
logger.info("Loaded %d jobs from '%s'.", len(jobs), match)
5152
for j in jobs:
52-
j.application.is_prepared._impl = True
53+
stripProxy(j.application).is_prepared = True
5354
j.submit()
5455
jobids.append(j.id)
5556

0 commit comments

Comments
 (0)