Skip to content

Commit

Permalink
Merge pull request #69 from atlassian/fix-incorrect-jsm-api-urls
Browse files Browse the repository at this point in the history
fix incorrect jsm api urls
  • Loading branch information
zekihan authored Oct 23, 2024
2 parents bd48900 + e4b4490 commit ba25f9b
Show file tree
Hide file tree
Showing 13 changed files with 342 additions and 352 deletions.
8 changes: 4 additions & 4 deletions bmc-footprints-v11/scripts/send2jsm.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import (

var TOTAL_TIME = 60
var configParameters = map[string]string{"apiKey": "",
"bmcFootPrints.url": "",
"bmcFootPrints.username": "",
"bmcFootPrints.password": "",
"bmcFootPrints.url": "",
"bmcFootPrints.username": "",
"bmcFootPrints.password": "",
"bmcFootPrints2jsm.logger": "warning",
"jsm.api.url": "https://api.atlassian.com",
"bmcFootPrints2jsm.http.proxy.enabled": "false",
Expand Down Expand Up @@ -104,7 +104,7 @@ type IssueDetailsResult struct {
LastDateServer string `xml:"lastdateServer"`
LastTimeServer string `xml:"lasttimeServer"`
MostRecentEdit MostRecentEdit
JSMAlertAlias string `xml:"JSM__bAlert__bAlias"`
JSMAlertAlias string `xml:"JSM__bAlert__bAlias"`
}

func main() {
Expand Down
8 changes: 4 additions & 4 deletions bmc-footprints-v12/scripts/send2jsm.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import (

var TOTAL_TIME = 60
var configParameters = map[string]string{"apiKey": "",
"bmcFootPrints.url": "",
"bmcFootPrints.username": "",
"bmcFootPrints.password": "",
"bmcFootPrints.workspaceName": "",
"bmcFootPrints.url": "",
"bmcFootPrints.username": "",
"bmcFootPrints.password": "",
"bmcFootPrints.workspaceName": "",
"bmcFootPrints2jsm.logger": "warning",
"jsm.api.url": "https://api.jsm.com",
"bmcFootPrints2jsm.http.proxy.enabled": "false",
Expand Down
2 changes: 1 addition & 1 deletion bmc-remedy/conf/integration.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiKey = YOUR_API_KEY
jsm.api.url = https://api.atlassian.com/jsm/ops/integration
jsm.api.url = https://api.atlassian.com

######################################## PROXY SERVER CONFIGURATION ############################################
#http.proxy.server.enabled=false
Expand Down
2 changes: 1 addition & 1 deletion bmc-remedy/scripts/send2jsm.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import (
var API_KEY string = ""
var TOTAL_TIME = 60
var configParameters = map[string]string{"apiKey": API_KEY,
"jsm.api.url": "https://api.atlassian.com/jsm/ops/integration",
"jsm.api.url": "https://api.atlassian.com",
"bmcRemedy2jsm.logger": "warning",
"bmcRemedy2jsm.http.proxy.enabled": "false",
"bmcRemedy2jsm.http.proxy.port": "1111",
Expand Down
Loading

0 comments on commit ba25f9b

Please sign in to comment.