-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error creating schedules with Temporal CLI when passing a JSON object with multiple key:value pairs to --input #188
Comments
Probably dup of #159 . Try 0.7.0? |
Manually downloading the 0.7.0 version of the EXE and using that to run the previously problematic command works. So 0.7.0 has fixed my issue as well, thank you! However, I would still like to be able to use the |
This is a bug in the docker image build process which doesn't set the proper version using ldflags, similarly to goreleaser . Filed a bug to address this temporalio/docker-builds#107 |
until #107 is addressed, CLI version 0.7.0 can be checked by matching the Server or UI versions. This is the result from
|
Fixed in #148 |
Expected Behavior
Running the Temporal CLI command for creating schedules (
temporal schedule create
) creates a schedule according to provided arguments (such as--input {\"TestNumber\":\"650537101\",\"TestID\":1}
).Actual Behavior
No schedule is created when running the Temporal CLI command for creating schedules. The following output (error) is shown in Command Prompt:
('export TEMPORAL_CLI_SHOW_STACKS=1' to see stack traces)
Steps to Reproduce the Problem
docker-compose.yml
file from https://github.com/temporalio/docker-compose.docker exec temporal-admin-tools temporal schedule create -s test-schedule-id -w test-scheduled-workflow -t TEST_TASK_QUEUE --workflow-type TestWorkflow --input {\"TestNumber\":\"650537101\",\"TestID\":1} --interval 1m
Specifications
Additional context
--input {\"CardNumber\":\"650537101\"}
.docker exec temporal-admin-tools tctl schedule create --sid test-schedule-id --wid test-scheduled-workflow -tq TEST_TASK_QUEUE -wt TestWorkflow --input {\"TestNumber\":\"650537101\",\"TestID\":1} --interval 1m
.The text was updated successfully, but these errors were encountered: