[GitHub] [tinkerpop] spmallette commented on pull request #1379: Fix construction field assignment

2021-01-13 Thread GitBox


spmallette commented on pull request #1379:
URL: https://github.com/apache/tinkerpop/pull/1379#issuecomment-759408065


   Thanks for noticing this - merged as CTR on: 
f8b2449fc2fb6d65a19ebc1c0af36fa9eef424c3



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [tinkerpop] spmallette closed pull request #1379: Fix construction field assignment

2021-01-13 Thread GitBox


spmallette closed pull request #1379:
URL: https://github.com/apache/tinkerpop/pull/1379


   



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[tinkerpop] branch 3.4-dev updated (82c968b -> f8b2449)

2021-01-13 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from 82c968b  Explicit generic definition as some environments seem to fail 
on builds without that. CTR
 add f8b2449  Fix construction field assignment

No new revisions were added by this update.

Summary of changes:
 gremlin-python/src/main/jython/gremlin_python/process/strategies.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



[tinkerpop] 02/02: Merge branch '3.4-dev'

2021-01-13 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 6c3844bfae0d36a2d517f44468e9167ca5e4c0a4
Merge: 975e46b f8b2449
Author: Stephen Mallette 
AuthorDate: Wed Jan 13 06:31:21 2021 -0500

Merge branch '3.4-dev'

 gremlin-python/src/main/python/gremlin_python/process/strategies.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --cc gremlin-python/src/main/python/gremlin_python/process/strategies.py
index 465659c,000..86fc3f8
mode 100644,00..100644
--- a/gremlin-python/src/main/python/gremlin_python/process/strategies.py
+++ b/gremlin-python/src/main/python/gremlin_python/process/strategies.py
@@@ -1,232 -1,0 +1,232 @@@
 +#
 +# Licensed to the Apache Software Foundation (ASF) under one
 +# or more contributor license agreements.  See the NOTICE file
 +# distributed with this work for additional information
 +# regarding copyright ownership.  The ASF licenses this file
 +# to you under the Apache License, Version 2.0 (the
 +# "License"); you may not use this file except in compliance
 +# with the License.  You may obtain a copy of the License at
 +#
 +# http://www.apache.org/licenses/LICENSE-2.0
 +#
 +# Unless required by applicable law or agreed to in writing,
 +# software distributed under the License is distributed on an
 +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 +# KIND, either express or implied.  See the License for the
 +# specific language governing permissions and limitations
 +# under the License.
 +#
 +
 +__author__ = 'Marko A. Rodriguez (http://markorodriguez.com)'
 +
 +from gremlin_python.process.traversal import TraversalStrategy
 +
 +base_namespace = 'org.apache.tinkerpop.gremlin.process.traversal.strategy.'
 +decoration_namespace = base_namespace + 'decoration.'
 +finalization_namespace = base_namespace + 'finalization.'
 +optimization_namespace = base_namespace + 'optimization.'
 +verification_namespace = base_namespace + 'verification.'
 +computer_decoration_namespace = 
'org.apache.tinkerpop.gremlin.process.computer.traversal.strategy.decoration.'
 +
 +#
 +# DECORATION STRATEGIES #
 +#
 +
 +
 +class ConnectiveStrategy(TraversalStrategy):
 +def __init__(self):
 +TraversalStrategy.__init__(self, fqcn=decoration_namespace + 
'ConnectiveStrategy')
 +
 +
 +class ElementIdStrategy(TraversalStrategy):
 +def __init__(self):
 +TraversalStrategy.__init__(self, fqcn=decoration_namespace + 
'ElementIdStrategy')
 +
 +
 +# EventStrategy doesn't make sense outside JVM traversal machine
 +
 +class HaltedTraverserStrategy(TraversalStrategy):
 +def __init__(self, halted_traverser_factory=None):
 +TraversalStrategy.__init__(self, fqcn=decoration_namespace + 
'HaltedTraverserStrategy')
 +if halted_traverser_factory is not None:
 +self.configuration["haltedTraverserFactory"] = 
halted_traverser_factory
 +
 +
 +class OptionsStrategy(TraversalStrategy):
 +def __init__(self, options=None):
 +TraversalStrategy.__init__(self, configuration=options, 
fqcn=decoration_namespace + 'OptionsStrategy')
 +
 +
 +class PartitionStrategy(TraversalStrategy):
 +def __init__(self, partition_key=None, write_partition=None, 
read_partitions=None, include_meta_properties=None):
 +TraversalStrategy.__init__(self, fqcn=decoration_namespace + 
'PartitionStrategy')
 +if partition_key is not None:
 +self.configuration["partitionKey"] = partition_key
 +if write_partition is not None:
 +self.configuration["writePartition"] = write_partition
- if write_partition is not None:
++if read_partitions is not None:
 +self.configuration["readPartitions"] = read_partitions
 +if include_meta_properties is not None:
 +self.configuration["includeMetaProperties"] = 
include_meta_properties
 +
 +
 +class SeedStrategy(TraversalStrategy):
 +def __init__(self, seed):
 +TraversalStrategy.__init__(self, 
fqcn="org.apache.tinkerpop.gremlin.process.traversal.strategy.decoration.SeedStrategy")
 +self.configuration["seed"] = seed
 +
 +
 +class SubgraphStrategy(TraversalStrategy):
 +
 +def __init__(self, vertices=None, edges=None, vertex_properties=None):
 +TraversalStrategy.__init__(self, fqcn=decoration_namespace + 
'SubgraphStrategy')
 +if vertices is not None:
 +self.configuration["vertices"] = vertices
 +if edges is not None:
 +self.configuration["edges"] = edges
 +if vertex_properties is not None:
 +self.configuration["vertexProperties"] = vertex_properties
 +
 +
 +class VertexProgramStrategy(TraversalStrategy):
 +def __init__(self, graph_computer=None, workers=None, persist=None, 
result=None, vertices=None, edges=None,
 + configuration=None):
 +

[tinkerpop] branch master updated (975e46b -> 6c3844b)

2021-01-13 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from 975e46b  Merge branch '3.4-dev'
 new f8b2449  Fix construction field assignment
 new 6c3844b  Merge branch '3.4-dev'

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 gremlin-python/src/main/python/gremlin_python/process/strategies.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)