jira

Is there a way to to see what dates/times tickets changed Status via the JIRA API?

筅森魡賤 提交于 2019-12-11 03:44:52
问题 I am trying to run queries against the JIRA API and get results in which I can see the dates and times that each issue went through a status change. E.g.: Run a query to grab all issues with a certain assignee and see, along with the rest of the information, timestamps for when each issue changed from "Open" to "Resolved". Is this possible? EDIT: I have tried expanding the changelog, but while that tells me what status changes a ticket went through (e.g., that the particular ticket

400 / 500 error adding worklog in Jira REST API

杀马特。学长 韩版系。学妹 提交于 2019-12-11 03:06:10
问题 I am ready to bang my head off a brick wall so would greatly appreciate any input on this. I am getting the above mentioned errors when I try to add a new worklog. The code to try and add the worklog.... // convert worklog to json string JavaScriptSerializer serializer = new JavaScriptSerializer(); string data = serializer.Serialize(worklog); // set up the web request HttpWebRequest request = WebRequest.Create(baseUrl) as HttpWebRequest; request.ContentType = "application/json"; request

HTTP Basic Authentication and Attlassian JIRA, Confluence and Bitbucekt

蹲街弑〆低调 提交于 2019-12-11 00:27:58
问题 I have JIRA, Confluence and Bitbucket deployed on my server behind Apache reverse proxy. Each of them is connected with others using Application links. Now, I want to add additional layer of protection by implementing HTTP Basic Authentication in front of this. When I do this, I lose connection between apps. How to configure Apache properly in order to have HTTP Basic Authentication in front of whole stack AND connection between apps? 回答1: Where did you configure basic authentication?

In Behaviors Plugin 0.5.3 for Jira 5.1.8, I am unable to make reporter field as Read-Only?

风格不统一 提交于 2019-12-10 22:37:10
问题 I am upgrading my Jira from 4.3.2 to 5.1.8. I have my reporter field as read-only field for couple of transitions. I wanted to make this reporter field as read-only in Jira 5.1.8 also. But when I install compatible version for Jira 5.1.8 i.e. Behaviour Plugin 0.5.3. then reporter field or any other user picker is not made as read-only. This is a Bug for Behaviour Plugin. Can anyone please tell me the workaround for this? Any help will be appreciable... Thanks in Advance. Renu 回答1: UPDATE How

How to override event.stopPropagation(),preventDefault().stopImmediatePropagation()

烈酒焚心 提交于 2019-12-10 22:27:20
问题 I am trying to modify Jira Tempo plugin's plan work form. So in the tempo time sheet page I have a button who has 2 actions bind-ed, one is a click action and one is a focus out. the click action opens a popup. and the focus out verifies the form in the popup. I need the clik action to be executed first and then the focus out. The problem is when the popup opens there is a call to all of the three functions. event.stopPropagation().preventDefault().stopImmediatePropagation(); so the focus out

System.Net.WebException when sending JSON using POST request to a Jira API

耗尽温柔 提交于 2019-12-10 20:29:16
问题 Alright guys, I have been wrestling with this issue for a day or so with no clear resolution. I will start with the exception: The remote server returned an error: NotFound. at System.Net.Browser.AsyncHelper.BeginOnUI(SendOrPostCallback beginMethod, Object state) at System.Net.Browser.ClientHttpWebRequest.EndGetResponse(IAsyncResult asyncResult) I am attempting to connect to the JIRA rest API for logging in a user. Our JIRA system is currently running 4.4.1, and the API information I am

jira日志出现错误:there was an error getting a DBCP datasource

血红的双手。 提交于 2019-12-10 18:39:23
论坛回答:https://community.atlassian.com/t5/Jira-questions/DBCP-Datasource-error-on-Jira/qaq-p/264517 错误分析:https://confluence.atlassian.com/jirakb/operations-fail-in-jira-server-with-connection-pool-errors-in-logs-296094778.html 验证数据库连接:https://confluence.atlassian.com/adminjiraserver073/surviving-connection-closures-861253055.html?_ga=2.43666214.228310754.1575868463-31931334.1566527624 数据库连接配置:https://confluence.atlassian.com/adminjiraserver073/tuning-database-connections-861253053.html 来源: CSDN 作者: winpal 链接: https://blog.csdn.net/winpal/article/details/103480041

python JIRA connection with proxy

狂风中的少年 提交于 2019-12-10 17:48:12
问题 I'm trying to connect via python-jira using a proxy: server = {"server": "https://ip:port/jira", 'proxies': {"http": "http://ip:port", "https": "http://ip:port"}, 'verify': False, 'stream': True} cls.jira_object = JIRA(options=server, basic_auth=(user, password), validate=True) Traceback error: tests\jira_test\ticket_test.py:52: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ build\bdist.win-amd64\egg\jira\client.py:217: in __init__ ??? build\bdist.win-amd64

How to Create a Issue into JIRA through REST api?

笑着哭i 提交于 2019-12-10 16:34:11
问题 I am sending the POST request to the JIRA with my json data for create a project, but I am unable to create a project into JIRA, I tried to see the error from the Fiddler and I got following error. I am using the C# and created console application for it. My JSON data which I am posting is following. { "fields": { "project": { "key": "JTL" }, "issuetype": { "name": "BUG" } } } Error Message is following: {"errorMessages":[],"errors":{"issuetype":"issue type is required"}} I am posting json

Is it possible to integrate JIRA with mercurial (without fisheye)?

孤街醉人 提交于 2019-12-10 16:18:27
问题 I'm setting up a development server with JIRA as issue tracker and mercurial as SCM. Is it possible to relate commits with the JIRA's issues (without using fisheye or any commercial tool)? 回答1: Yes, the JIRA Mercurial plugin does this, just like the JIRA Subversion plugin does for Subversion. It needs an update for 4.3 though, I must get around to that. 来源: https://stackoverflow.com/questions/6504257/is-it-possible-to-integrate-jira-with-mercurial-without-fisheye