I'm trying to migrate data from an oracle database to postgress.
By using the fisheye command I am using the oracle backup file:
./fisheyectl.sh restore --sql \
--file /home/konrad/Downloads/crucible_backup_2021_04_06.zip \
--dbtype postgresql \
--jdbcurl jdbc:postgresql://localhost/crucible \
--username crucible \
--password password
The backup loads in succesfully. After the restore is done I receive the following error when I start up crucible. Could you assist me to see where it is going wrong:
2021-05-07 13:47:13,972 INFO - Starting plugin system...
2021-05-07 13:47:19,097 INFO - Starting mail system...
2021-05-07 13:47:19,117 INFO - Mail system started.
2021-05-07 13:47:22,725 INFO - Active spring profiles: []
2021-05-07 13:47:25,742 INFO - Now checking for new software releases every 1 year
2021-05-07 13:47:26,426 ERROR - Error while checking for newer versions from http://update.atlassian.com (Unable to parse product update description.)
com.cenqua.fisheye.util.ProductUpdateParseException: Unable to parse product update description.
at com.cenqua.fisheye.util.ProductUpdateInfoParser.parse(ProductUpdateInfoParser.java:84) [fisheye.jar:?]
at com.cenqua.fisheye.util.DefaultProductUpdatePoller.checkForUpdates(DefaultProductUpdatePoller.java:134) [fisheye.jar:?]
at com.cenqua.fisheye.util.DefaultProductUpdatePoller$1.run(DefaultProductUpdatePoller.java:86) [fisheye.jar:?]
at java.util.TimerThread.mainLoop(Timer.java:555) [?:1.8.0_292]
at java.util.TimerThread.run(Timer.java:505) [?:1.8.0_292]
Caused by: java.lang.NullPointerException
at com.cenqua.fisheye.util.ProductUpdateInfoParser.parse(ProductUpdateInfoParser.java:79) [fisheye.jar:?]
... 4 more
^C