Email Notification unpredicted behaviour in sonarqube - plugins

This is about sonarqube 5.1 version
I have issue assign plugin and also subscribed to the emails in my profile page. I've done some erroneous SVN commits deliberately to check the email notification settings but it doesn't seem to work correctly. I receive emails sometimes but other times it doesn't work like that.
I know this is not a constructive enough question but I'm really stucked here after trying all the scenarios and going through the documentation.
Any insight would be highly appreciated.

You should uninstall this plugin. It is compatible, but it does not work correctly. The problem is that SonarQube 5.1 introduced core auto assignment (see automatic issue assignment and SONAR-5906). The core functionality & plugin execution order is as follows:
Plugin during the execution assigns issues & collects information to whom he should send e-mails. Next core functionality reassign issues.
Core functionality reassigns issues
Plugin sends emails with incorrect data
See topic on SonarQube mailing list

I am also using SQ 5.1 and Issue Assign plugin works perfectly fine without any issues. You should check your email notification settings.

Related

Postsharp express license

I was wondering if you could help – we have previously used a version of Postsharp 2.1.5.1 basic features for the last number of years on a historical application.
All of a sudden, it has started asking for a license key and we cannot find one – it was originally set up by a developer who has long since moved on.
We are trying to use the basic features and don’t require a full license – is this possible?
The version runs on VS 2010 and every time I select an option via the pop up I receive a “Postsharp is configured” message, but when I build the solution, I receive build errors related to Postsharp. Also, the same windows pops up again, and I am taken back to the start of the process i.e. Trial, register or purchase a licence.
Am I missing something in the setup? How do you configure the Express version or download a licence, every time I choose the Express download from the web site I get the full version.
Hope this makes sense. Any help would be greatly appreciated.
Best regards
D
You should upgrade to the latest build of PostSharp 2.1. It will give you the ability to register PostSharp Express without getting a license on our website.

Google Charts, sometimes it works and sometimes it does not?

Google Charts works sometimes and sometimes it does not work! Please notice that I am using the same data in both cases ,no difference at all, when it does not work it throws a message error in the console.
I am sure that the problem is not happening from my side, it is happening from google side. Did this problem happen to anyone before and does it happen often?
There are many duplicate reports on this issue. There seems to have been a bit of a problem with the loader system with caching browsers and caching proxies keeping redirects from the 'current' version during the latest release.
Switching to a fixed version (43 for before this update, or 44 for the new version) has been an effective workaround for most people.
This the Google Visualization team assures us this is a temporary issue, will solve itself as caches expire, and they'll look into solving the underlying problem before the next release.
the solution is to explicitly specify previous version of the API to load instead of using current:
- google.charts.load('current', {'packages':['bar']});
+ google.charts.load('43', {'packages':['bar']});
Here is a link to a discussion about the new version v44 from Google Charts team.
From: https://stackoverflow.com/a/35648674/1857295

Upgrading Sage to V3 problems

I am running zencart and use an add on module for sagepay form. I have just upgraded this to the latest version which should comply to v3 but when I log into mysagepay it still says I need to upgrade to V3. Is there somewhere else I should be going to make the changes? I have a copy of the technical guide for migrating from v2.23 to v3 which tells me the changes I need to make but I don't know where I need to go to make these changes. I am sure this is really simple but I am struggling. Any help would be much appreciated.
I'd recommend that you have a transaction ID (that you believe to be at 3.00) to hand and give Sage Pay a call - they can check the protocol value for you, so you can be sure you have upgraded successfully (MSP isn't always 100% reliable in the messages once you have upgraded!)

Activity stream missing after JIRA upgrade

I upgraded our JIRA from version 6 to version 6.1. Suddenly the Activity Streams are always empty. It is very annoying for the users who were very dependent on them. So I need to get the activity streams back.
What I have tried so far:
1. Reindexing
2. Creating a new widget for activity stream
What log can I look into to see what is broken? Do I need to create a new filter or something?
Please do not create activitystream-gadget.xml. Instead, remove the gadgets you have now and install the latest versions of each--including the Activity Stream gadget itself.
Please look at your atlassian-jira.log file.
Mostly this is caused by outdated plugins using deprecated (and now removed) classes. Similar thing happened to me when OSUser class was removed due to deprecation and an older plugin still used it.
If you are not able to view the log, try disabling user installed plugins.

Cannot get Google Analytics Plugin to Work with PhoneGap 2.0

I had been using PhoneGap 1.9 for a while and was successfully using the Google Analytics Plugin.
I recently upgraded to PG 2.0 (so that I could use the new Urban Airship plugin) and now my Google Analytics seems to have stopped functioning.
Unfortunately, I think it has something to do with the initialization of the plugin via JavaScript. After some frustration I got my app to finally compile. But, my app pretty much just stops responding after the Google Analytics plugin is initialized in my JavaScript.
I wish I could give you guys some error messages or something, but I am getting no compiler errors and I am getting no JavaScript errors. The app just does not respond when I use the following two lines:
g_objGoogleAnalytics = window.plugins.googleAnalyticsPlugin;
g_objGoogleAnalytics.startTrackerWithAccountID("UA-XXXXXXXX-X");
If I comment these two lines out, everything else in the app works like a charm.
Has anyone got the Google Analytics plugin working under PG 2.0? If so, any advice or steps would be greatly appreciated.
UPDATE: I added some error checking with try/catch and the console log now states "undefined is not an object" whenever I execute the above two lines of code.
I found the answer myself. kieranshaw on github changed the keyword "PhoneGap" to "codova" in the JS file and that seemed to mix the issue. You can see the changes here: https://github.com/kieranshaw/phonegap-plugins/commit/cc4424410869912ff278de0228a6c328b1296fbe
Here's a way to implement GA on PG without plug-ins, though there are limitations as indicated in the solution: How to use Google Analytics with Phonegap without a plugin?