This is the error I am getting:-
ld: file is universal (3 slices) but does not contain a(n) armv7s slice: /Users/sikosis/Dropbox/Code/Back2BackFM/Back2BackFM/JIRAConnect/JMCClasses/Libraries/CrashReporter.framework/CrashReporter for architecture armv7s
clang: error: linker command failed with exit code 1 (use -v to see invocation)
It's to do with JMC's CrashReporter.
JIRA Agile has a cross-version compatibility layer so that it can "bridge" a common internal abstraction of several services to the correct linkage in different versions, conditionally take advantage of services as they appear, and so on. The BridgeServiceLocator
is the class that helps it figure out which version of a service to use, find it, and use it. It should be initialized automatically as part of JIRA Agile starting up, and when JIRA Agile goes away or gets upgraded, the old one is explicitly cleared out.
The error message you are seeing means one of two things has happened. Either:
BridgeServiceLocator
for some reason was never initialized; or,BridgeServiceLocator
successfully shut itself down, and those leftover bits are still trying to respond to issue events. In the course of doing so they are trying to talk to the bridge service, and since it's gone you get the error message you reported.Neither situation is a good one. I would recommend restarting to see if it clears the situation up, and you might consider reporting this in a support case along with your log files to see if the reason for the failure can be identified in them.
Thank you Chris,
I'm gonna raise this issue at Agile plugin staff.
Edit : Actually it got fixed by it-self by rebooting the server. Thanks again.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.