mirror of
https://github.com/google/nomulus.git
synced 2025-04-29 19:47:51 +02:00
Trim cloud scheduler config url value before submitting (#1988)
This commit is contained in:
parent
e18dba472b
commit
ae1c829b46
1 changed files with 1 additions and 1 deletions
|
@ -93,7 +93,7 @@ func main() {
|
||||||
"http", taskRecord.Name,
|
"http", taskRecord.Name,
|
||||||
"--location", "us-central1",
|
"--location", "us-central1",
|
||||||
"--schedule", taskRecord.Schedule,
|
"--schedule", taskRecord.Schedule,
|
||||||
"--uri", fmt.Sprintf("https://backend-dot-%s.appspot.com%s", projectName, taskRecord.URL),
|
"--uri", fmt.Sprintf("https://backend-dot-%s.appspot.com%s", projectName, strings.TrimSpace(taskRecord.URL)),
|
||||||
"--description", description,
|
"--description", description,
|
||||||
"--http-method", "get",
|
"--http-method", "get",
|
||||||
"--oidc-service-account-email", serviceAccountEmail,
|
"--oidc-service-account-email", serviceAccountEmail,
|
||||||
|
|
Loading…
Add table
Reference in a new issue