Skip to content

Commit

Permalink
Fixing redirect loop #8969 (#9154)
Browse files Browse the repository at this point in the history
* Fixing redirect loop #8969

* Fixing problems with testing

* fixing rows
  • Loading branch information
lidiazuin authored Jun 5, 2024
1 parent 64f0120 commit e6822ce
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions doc/modules/ROOT/pages/algorithms/louvain.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -389,7 +389,6 @@ YIELD communityCount, modularity, modularities
|===
| communityCount | modularity | modularities
| 2 | 0.3571428571428571 | [0.3571428571428571]
|1 row
|===
--

Expand Down Expand Up @@ -417,7 +416,6 @@ YIELD communityCount, modularity, modularities
|===
| communityCount | modularity | modularities
| 2 | 0.3571428571428571 | [0.3571428571428571]
|1 row
|===
--

Expand Down
2 changes: 1 addition & 1 deletion doc/modules/ROOT/pages/management-ops/administration.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ GRANT ROLE admin TO carol;
----

As we can see, `alice` and `bob` are standard users with read access to the database.
`carol` is an administrator by virtue of being granted the `admin` role (for more information about this role see the https://neo4j.com/docs/cypher-manual/current/administration/security/administration/#administration-security-administration-introduction[Cypher manual]).
`carol` is an administrator by virtue of being granted the `admin` role (for more information about this role see the https://neo4j.com/docs/operations-manual/current/authentication-authorization/built-in-roles/[Operations manual]).

Now `alice` and `bob` each project a few graphs.
They both project a graph called `graphA` and `bob` also projects a graph called `graphB`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The following table lists the supported property types, as well as their corresp
| Double | Float | 64 bit signed | `Double.NaN`
| List of Long | List of Integer | - | `null`
| List of Double | List of Float | - | `null`
| List of Float | - | `null`
| List of Float | - | - | `null`
|===


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ The specific configuration needs to include the following keys:
The schema of the result records is identical to the corresponding procedure:

.Results
[opts="header",cols="1,1,1,1,1"]
[opts="header",cols="1,1,1"]
|===
| sourceNodeId | targetNodeId | relationshipType
| 0 | 1 | 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Please see the table below.
|===
| 1.x | 2.x
| `gds.beta.pipeline.nodeClassification.configureParams`
| | This procedure, which is no longer present, added logistic regression model candidates. Adding logistic regression candidates, can instead be done by calling `gds.beta.pipeline.nodeClassification.addLogisticRegression` one or multiple times.
| This procedure, which is no longer present, added logistic regression model candidates. Adding logistic regression candidates, can instead be done by calling `gds.beta.pipeline.nodeClassification.addLogisticRegression` one or multiple times.
|===


Expand Down

0 comments on commit e6822ce

Please sign in to comment.