⚆ Trung Nguyen

Results 10 comments of ⚆ Trung Nguyen

Here is the workaround I'm using now: ``` text="${text//'%'/'%25'}" text="${text//$'\n'/'%0A'}" text="${text//$'\r'/'%0D'}" echo "::set-output name=value::$text" ``` And using `master` ```yaml - name: Create ${{ steps.tag.outputs.value }} release id: create_release uses: actions/create-release@master...

Recently I've run into the similar issue, but in my case, I was trying to mock the Spring JPA Repository's `save()` method. Something like: ```java @Repository public interface MyRepository extends...

When reading through the code i believe `referral` scenario has been [taken care in the code](https://github.com/jcmturner/gokrb5/blob/master/client/TGSExchange.go#L41-L54). However, when running in my real environment, it returns an error: `KRB_AP_ERR_BADMATCH Ticket and...

I think I found the issue, will raise PR for review. In a nutshell, the TGT ticket realm is not the same as the client realm due to multiple levels...

@viictorh it seems you have found the solution. Would you mind creating an PR?

I think it's due to the your application class loader can't find the class which was dynamically compiled. I need to try this myself but my thinking is that there...

Can you give an example of the code that produces NPE?

Can you try to set JAVA_HOME to your JDK location?

> Calculate SHA for schema files and record to a hidden file? I believe that's the case for openapi codegen: https://github.com/OpenAPITools/openapi-generator/blob/c224cf484b020a7f5997d883cf331715df3fb52a/modules/openapi-generator-maven-plugin/src/main/java/org/openapitools/codegen/plugin/CodeGenMojo.java#L834-L843

The network is provisioned in the private subnet so you can't access directly from outside. There are 3 options: 1. Login to Bastion node and deploy the contract 2. Setup...