Skip to content

Commit

Permalink
fix the loop length from parmeters count
Browse files Browse the repository at this point in the history
  • Loading branch information
abechen committed Jun 2, 2020
1 parent 2704bc1 commit 7bc7c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion incubating/wrappers/s2i/R/microservice.R
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ extract_parmeters <- function(params) {
j = fromJSON(params)
values <- list()
names <- list()
for (i in seq_along(j))
for (i in seq_len(NROW(j)))
{
name <- j[i,"name"]
value <- j[i,"value"]
Expand Down

0 comments on commit 7bc7c86

Please sign in to comment.