langchain
langchain copied to clipboard
Change in method name for creating an issue on JIRA
The awesome JIRA tool created by @zywilliamli calls the create_issue() method to create issues, however, the actual method is issue_create().
Details in the Documentation here: https://atlassian-python-api.readthedocs.io/jira.html#manage-issues
good catch! should we add an integration test to make sure?
@dev2049 Integration Tests would mean we'll have to manage JIRA API keys. Not sure how to do that. :/ Any thoughts?
@dev2049 Integration Tests would mean we'll have to manage JIRA API keys. Not sure how to do that. :/ Any thoughts?
integration tests aren't actually run in CI or anything at the moment. they just make it easy to test things locally. so as long as you had jira keys in your env and ran the integration test it would work. see the other tests/integration_tests/utilities/... for examples
Thanks for the pointer @dev2049 . I've added the tests. Let me know if this is good to go!
Thanks @varun1505!