Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix munew line are not rendered correclty when multiple params are given #2891

Merged
merged 1 commit into from
Jun 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion analytical_engine/core/grape_instance.cc
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ bl::result<rpc::graph::GraphDefPb> GrapeInstance::projectToSimple(
return graph_def;
}
VY_OK_OR_RAISE(client_->Persist(vy_info.vineyard_id()));
// contruct fragment group
// construct fragment group
BOOST_LEAF_AUTO(frag_group_id,
vineyard::ConstructFragmentGroup(
*client_, vy_info.vineyard_id(), comm_spec_));
Expand Down
4 changes: 2 additions & 2 deletions interactive_engine/assembly/src/bin/graphscope/giectl
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ start_frontend() {
-e "s@THREADS_PER_WORKER@${threads_per_worker}@g" \
${GRAPHSCOPE_HOME}/conf/frontend.vineyard.properties > ${config_dir}/frontend.vineyard.properties
echo -e "\n" >> ${config_dir}/frontend.vineyard.properties
echo $decoded_params >> ${config_dir}/frontend.vineyard.properties
echo -e "$decoded_params" >> ${config_dir}/frontend.vineyard.properties

# frontend service hold a handle client of coordinator
java ${java_opt} \
Expand Down Expand Up @@ -178,7 +178,7 @@ start_executor() {
-e "s@THREADS_PER_WORKER@${threads_per_worker}@g" \
${GRAPHSCOPE_HOME}/conf/executor.vineyard.properties > ${config_dir}/executor.$server_id.vineyard.properties
echo -e "\n" >> ${config_dir}/executor.$server_id.vineyard.properties
echo $decoded_params >> ${config_dir}/executor.$server_id.vineyard.properties
echo "$decoded_params" >> ${config_dir}/executor.$server_id.vineyard.properties

cp ${GRAPHSCOPE_HOME}/conf/log4rs.yml ${config_dir}/log4rs.yml

Expand Down
4 changes: 2 additions & 2 deletions python/graphscope/interactive/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def execute(self, query, request_options=None):
"""Execute gremlin querying scripts.

Args:
query (str): Scripts that written in gremlin quering language.
query (str): Scripts that written in gremlin query language.
request_options (dict, optional): Gremlin request options. format:
{
"engine": "gae"
Expand All @@ -154,7 +154,7 @@ def submit(self, query, request_options=None):
def subgraph(self, gremlin_script, request_options=None):
"""Create a subgraph, which input is the result of the execution of `gremlin_script`.

Any gremlin script that output a set of edges can be used to contruct a subgraph.
Any gremlin script that output a set of edges can be used to construct a subgraph.

Args:
gremlin_script (str): Gremlin script to be executed.
Expand Down
Loading