Message8145

Author eeiddne
Recipients eeiddne
Date 2013-10-07.16:11:51
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1381162312.13.0.204359487511.issue2097@psf.upfronthosting.co.za>
In-reply-to
Content
Hi,

Not sure if this is a bug yet, so apologies if it is not.
We have upgraded from Jython 2.2.1, to 2.5.2, and we are seeing issues with maaPlugin.

Has this changed between these releases?

The following is a sample script which is failing throwing NullPointer Exception for Jython 2.5.2, but not for 2.2.1:

 

class NULLpointer:

import os
import re
import string
import time
from com.ericsson.nms.umts.cnos.config.activitysupport.maaPlugin import MaaPlugin
from java.lang import *

maaPlugin = MaaPlugin(node)
maaPlugin.reportProgress(10)
maaPlugin.start()
maaPlugin.putInLog("CACLP from shell /tmp/caclp.sh "+node)
res=os.system("/tmp/caclp.sh "+node)
maaPlugin.end()
maaPlugin = MaaPlugin(node)
maaPlugin.start()
maaPlugin.reportProgress(90)
maaPlugin.end()

 


Regards,
Dónal
History
Date User Action Args
2013-10-07 16:11:52eeiddnesetrecipients: + eeiddne
2013-10-07 16:11:52eeiddnesetmessageid: <1381162312.13.0.204359487511.issue2097@psf.upfronthosting.co.za>
2013-10-07 16:11:52eeiddnelinkissue2097 messages
2013-10-07 16:11:51eeiddnecreate