我有一个奇怪的问题。我使用Python脚本部署了许多ear和war文件。但是,在第二个应用程序部署期间,我总是收到以下错误消息:
Property APPLICATION.CONF.REFRESH not found
在执行脚本的其他MS-DOS窗口中,我收到此警告/错误:
<Warning> <JNDI> <BEA-050001> <WLContext.close() was called in a different thread than the one in which it was created.>
这两条消息在我看来都是错误的。
带有Property的消息一直在运行,不再有任何作用。
可能是我的错误?
这是我的剧本:
connect(username, pwd)
edit()
startEdit()
cd('/')
cd('AppDeployments')
deploy(fileName, path, targets='AdminServer')
save()
activate()
disconnect()
exit()
此脚本连续执行5次。
感谢您的帮助!