Hidetake Iwata

Results 86 comments of Hidetake Iwata

It seems NAT connection is lost after the NAT instance is rebooted. `ip route del default dev eth0` command is needed to change the default route to eth1 to fix...

I think #42 resolved the issue. Please let me know if the issue still occurs.

This module uses eth1 with the EIP to pin the source IP address. If eth0 is used, the source IP address may fluctuate. I think your change breaks the fixed...

I could obtain the new thumbprint as the AWS official doc https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles_providers_create_oidc_verify-thumbprint.html. ```console % curl https://token.actions.githubusercontent.com/.well-known/openid-configuration {"issuer":"https://token.actions.githubusercontent.com","jwks_uri":"https://token.actions.githubusercontent.com/.well-known/jwks","subject_types_supported":["public","pairwise"],"response_types_supported":["id_token"],"claims_supported":["sub","aud","exp","iat","iss","jti","nbf","ref","repository","repository_owner","run_id","run_number","run_attempt","actor","workflow","head_ref","base_ref","event_name","ref_type","environment","job_workflow_ref"],"id_token_signing_alg_values_supported":["RS256"],"scopes_supported":["openid"]}% % openssl s_client -servername token.actions.githubusercontent.com -showcerts -connect token.actions.githubusercontent.com:443 CONNECTED(00000005) ... 1 s:/C=US/O=DigiCert Inc/CN=DigiCert...

This is workaround, we can identify if `errors` is provided by checking pointer type as follows: ```go var q *struct{} if err := client.Query(ctx, &q, vars); err != nil {...

Sounds good. Would you open the pull request?

Quote the argument as follows ``` groovy execute ('java "-XX:PermSize=256m" -jar xxxx.jar') ``` or give the command as a array like ``` groovy execute (['java', '-XX:PermSize=256m', '-jar', 'xxxx.jar']) ```

Do you want to execute the command as background daemon? See #231.

I could not reproduce this error. Would you tell me your environment such as Gradle version, JVM or OS? [Template project](https://github.com/gradle-ssh-plugin/template) works well.

It seems that JSch 0.1.46 is loaded on your environment but 0.1.52 is expected. `com.jcraft.jsch.JSch.removeAllIdentity(JSch.java:287)` means 0.1.46. Maybe classpath is something wrong. Would you try below syntax to load the...