java.lang.AssertionError: FlowFile content differs from input at byte
3 with input having value 10 and FlowFile having value 13

Quick search shows this looks like a LF/CR issue with Windows. We have
this setup in our GitHub workflow:

> git config --global core.autocrlf false

Is there a reason to not have autocrlf on Windows? I think autocrlf
would solve the issue.

On Wed, Dec 2, 2020 at 7:39 AM Mike Thomsen <[email protected]> wrote:
>
> @Joe Witt I am trying to run a build on the one Windows machine I have
> that can do the build. Should have it today.
>
> On Wed, Dec 2, 2020 at 6:57 AM Mike Thomsen <[email protected]> wrote:
> >
> > Sure.
> >
> > On Tue, Dec 1, 2020 at 3:53 PM Joe Witt <[email protected]> wrote:
> > >
> > > Mike
> > >
> > > It appears NIFI-7906 breaks the Github Actions CI build on Windows.
> > > https://github.com/apache/nifi/actions/runs/394238710
> > >
> > > Can you please resolve?
> > >
> > > Thanks
> > >
> > > On Tue, Dec 1, 2020 at 12:20 PM Otto Fowler <[email protected]> 
> > > wrote:
> > >
> > > >  It is awesome that you guys are contributing all this awesome graph
> > > > functionality, thanks Mike and colleagues!
> > > >
> > > > From: Mike Thomsen <[email protected]> <[email protected]>
> > > > Reply: [email protected] <[email protected]> <[email protected]>
> > > > Date: December 1, 2020 at 13:25:46
> > > > To: [email protected] <[email protected]> <[email protected]>
> > > > Subject:  Using record data with the graph bundle
> > > >
> > > > I just approved and merged a PR from a colleague of mine to bring over
> > > > some code that we've been building for our client. It's a new
> > > > processor called ExecuteGraphQueryRecord. It allows users to build a
> > > > parameter map from dynamic properties that specify mappings between a
> > > > key and a record path.
> > > >
> > > > Example usage:
> > > >
> > > > Input:
> > > >
> > > > {
> > > > "name": "John"
> > > > }
> > > >
> > > > Mapping:
> > > >
> > > > name => /name
> > > >
> > > > Cypher
> > > >
> > > > MATCH (p:Person) WHERE p.name = $name RETURN p
> > > >

Reply via email to