Skip to content

Commit e2b4931

Browse files
committed
Update server URLs in code
Suggestions added by Chris for the status-board to directly fetch our local server over docker instead of `141.142.216.168` which was a virtual machine at NCSA that’s apparently down
1 parent 4323c44 commit e2b4931

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

R/fct_workflow_status.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
workflow_status <- function(report){
14-
server <- rpecanapi::connect("http://141.142.217.168/", "carya", "illinois")
14+
server <- rpecanapi::connect("http://pecan.localhost/", "carya", "illinois")
1515
id <- report$workflow_id
1616
result <- data.frame()
1717
for (i in id) {

inst/ed2-test.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ library(httr)
77
library(glue)
88

99
# Modify for your target machine and authentication
10-
server <- connect("http://141.142.217.168/", "ashiklom", "admin")
10+
server <- connect("http://pecan.localhost/", "ashiklom", "admin")
1111

1212
# List all available models
1313
models <- GET(

inst/maespa-test.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ library(httr)
77
library(glue)
88

99
# Modify for your target machine and authentication
10-
server <- connect("http://141.142.217.168/", "ashiklom", "admin")
10+
server <- connect("http://pecan.localhost/", "ashiklom", "admin")
1111

1212
# List all available models
1313
models <- GET(

inst/run-test-list.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ library(httr)
77
library(glue)
88

99
# Modify for your target machine and authentication
10-
server <- connect("http://141.142.217.168/", "ashiklom", "admin")
10+
server <- connect("http://pecan.localhost/", "ashiklom", "admin")
1111

1212
# List all available models
1313
models <- GET(

inst/sipnet-test.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ library(httr)
77
library(glue)
88

99
# Modify for your target machine and authentication
10-
server <- connect("http://141.142.217.168/", "ashiklom", "admin")
10+
server <- connect("http://pecan.localhost/", "ashiklom", "admin")
1111

1212
# List all available models
1313
models <- GET(

0 commit comments

Comments
 (0)