amplab / graphx

Former GraphX development repository. GraphX has been merged into Apache Spark; please submit pull requests there.

Home Page:https://github.com/apache/spark

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Possible bug in GraphImpl.subgraph

ankurdave opened this issue · comments

See 9a03c5f#diff-40de2f32656455bb309b9cf10bf81d51R258

In GraphImpl.subgraph, this commit defines a newVidMap but passes the old localVidMap to the GraphImpl constructor. This is harmless since localVidMap is a superset of newVidMap, but it might be best to either use newVidMap or remove it.

This was fixed by fad6e70.