Skip to content

Commit

Permalink
update timing
Browse files Browse the repository at this point in the history
  • Loading branch information
vvalerio-priv committed Mar 5, 2024
1 parent 763b796 commit 864650a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/methods/genericfunctions.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,5 +353,5 @@ func GetAvailablePort() (string, error) {
}

func GetVersion() string {
return "1.1.1"
return "1.1.2"
}
7 changes: 7 additions & 0 deletions cmd/methods/populatefunctions.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,13 @@ func PopulateEnvironment(env string, path string, envname string, envtag string)
PrintError("Deleting metadata-cache container, cause " + err.Error())
return err
}

if err := ExecuteCommand(exec.Command("docker",
"restart",
envtagname+"converter-service")); err != nil {
PrintError("Error restarting converter service, cause " + err.Error())
return err
}
} else {
PrintError("You need to define a folder!")
return err
Expand Down

0 comments on commit 864650a

Please sign in to comment.