Skip to content

Commit

Permalink
Merge pull request #448 from ali-ince/2.0-bolt-v4
Browse files Browse the repository at this point in the history
Enable ESLint on driver project
  • Loading branch information
ali-ince committed Apr 8, 2019
2 parents cb87a3e + c551b1d commit 066a410
Show file tree
Hide file tree
Showing 168 changed files with 21,165 additions and 16,536 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build
docs
lib
node_modules
23 changes: 23 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"parser": "babel-eslint",
"env": {
"browser": true,
"es6": true,
"node": true,
"jasmine": true
},
"extends": "standard",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
},
"plugins": [
"jasmine"
]
}
5 changes: 0 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ If you're not already a member, sign up!

We love our community and wouldn't be where we are without you.


## Need to raise an issue?

Where you raise an issue depends largely on the nature of the problem.
Expand All @@ -34,7 +33,6 @@ Include as much information as you can in any request you make:
- What errors are you seeing?
- What solutions have you tried already?


## Want to contribute?

If you want to contribute a pull request, we have a little bit of process you'll need to follow:
Expand All @@ -50,16 +48,13 @@ We can't guarantee that we'll accept pull requests and may ask you to make some
Occasionally, we might also have logistical, commercial, or legal reasons why we can't accept your work but we'll try to find an alternative way for you to contribute in that case.
Remember that many community members have become regular contributors and some are now even Neo employees!


## Got an idea for a new project?

If you have an idea for a new tool or library, start by talking to other people in the community.
Chances are that someone has a similar idea or may have already started working on it.
The best software comes from getting like minds together to solve a problem.
And we'll do our best to help you promote and co-ordinate your Neo ecosystem projects.


## Further reading

If you want to find out more about how you can contribute, head over to our website for [more information](http://neo4j.com/developer/contributing-code/).

13 changes: 9 additions & 4 deletions ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ If you simply want to get started or have a question on how to use a particular
[StackOverflow](http://stackoverflow.com/questions/tagged/neo4j) also hosts a ton of questions and might already have a discussion around your problem.
Make sure you have a look there too.

If you want to make a feature request, please prefix your issue title with `[Feature Request]` so that it is clear to us.
If you want to make a feature request, please prefix your issue title with `[Feature Request]` so that it is clear to us.
If you have a bug report however, please continue reading.
To help us understand your issue, please specify important details, primarily:

Expand All @@ -32,17 +32,22 @@ I got connection reset by peer errors.
**Neo4j Version:** 3.4.10 Community
**Neo4j Mode**: Single instance
**Driver version**: JS driver 1.7.1
**Operating System:** Ubuntu 16.10 on AWS
**Operating System:** Ubuntu 16.10 on AWS

### Steps to reproduce

1. Start Neo4j on a AWS instance
2. Run a query with the driver
3. Put the driver idle for 2h
4. Run another query

### Expected behavior

The second query shall run successfully

### Actual behavior

The client failed to run the second query with a `connection reset by peer` stacktrace.
*attach the stacktrace*
_attach the stacktrace_
Meanwhile, in the server log, I found this stacktrace that happened at the same time when the driver failed.
*attach the stacktrace*
_attach the stacktrace_
Loading

0 comments on commit 066a410

Please sign in to comment.