Skip to content

Commit

Permalink
Fix incorrect URL for agent function
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain Bernard committed Feb 8, 2016
1 parent 020fc7d commit 4110b81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/slycat/web/server/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def compute_timeseries(fn_id, params):
arr.append("slycat-xyce-timeseries-push1.py --timeseries-file=%s --force %s %s" % (params["timeseries_file"], params["in_directory"], params["directory"]))

# uncomment this line for production
arr.append("python $SLYCAT_HOME/slycat-agent-compute-timeseries.py %s --cluster-sample-count %s --cluster-sample-type %s --cluster-type %s --cluster-metric %s --hash %s" % (params["directory"], params["cluster_sample_count"], params["cluster_sample_type"], params["cluster_type"], params["cluster_metric"], uid))
arr.append("python $SLYCAT_HOME/agent/slycat-agent-compute-timeseries.py %s --cluster-sample-count %s --cluster-sample-type %s --cluster-type %s --cluster-metric %s --hash %s" % (params["directory"], params["cluster_sample_count"], params["cluster_sample_type"], params["cluster_type"], params["cluster_metric"], uid))
# uncomment this line for local development
# arr.append("python slycat-agent-compute-timeseries.py %s --cluster-sample-count %s --cluster-sample-type %s --cluster-type %s --cluster-metric %s --hash %s" % (params["directory"], params["cluster_sample_count"], params["cluster_sample_type"], params["cluster_type"], params["cluster_metric"], uid))

Expand Down

0 comments on commit 4110b81

Please sign in to comment.