-
Notifications
You must be signed in to change notification settings - Fork 101
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
Handling integers in request params #25
Comments
Found a counterexample in the ECS client: (aws/invoke @ecs-client {:op :RunTask
:request {:cluster cluster-name
:taskDefinition task-family
:count 1
… }}) If I pass "1" into |
Yes, the counter example behaves as expected because it expects an int. The bug is that we're trying to url-encode the number, assuming it's a string. Fix coming soon. |
Released in 0.8.155. |
dchelimsky
pushed a commit
that referenced
this issue
May 15, 2023
* Add test suite with java s17 * Add matrix with java version * Prettier name
dchelimsky
pushed a commit
that referenced
this issue
Jul 10, 2023
* Add test suite with java s17 * Add matrix with java version * Prettier name
scottbale
pushed a commit
that referenced
this issue
Sep 13, 2023
* Add test suite with java s17 * Add matrix with java version * Prettier name
scottbale
pushed a commit
that referenced
this issue
Sep 13, 2023
* Add test suite with java s17 * Add matrix with java version * Prettier name
scottbale
pushed a commit
that referenced
this issue
Sep 13, 2023
* Add test suite with java s17 * Add matrix with java version * Prettier name
scottbale
pushed a commit
that referenced
this issue
Sep 13, 2023
* Add test suite with java s17 * Add matrix with java version * Prettier name
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
From the
(aws/ops)
output, I expected:FromPort
and:ToPort
to require a number, but I got a casting error: “java.lang.Long cannot be cast to java.lang.String”.Passing in strings works fine:
I’m using the following versions:
Should we always pass in strings as request parameters?
The text was updated successfully, but these errors were encountered: