Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
FusRoman committed Jan 16, 2024
1 parent 6545012 commit 0e5dd4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fink_mm/utils/fun_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -861,7 +861,7 @@ def read_and_build_spark_submit(config, logger):
>>> config = get_config({"--config" : "fink_mm/conf/fink_mm.conf"})
>>> logger = init_logging()
>>> read_and_build_spark_submit(config, logger)
'spark-submit --master local[2] --conf spark.mesos.principal= --conf spark.mesos.secret= --conf spark.mesos.role= --conf spark.executorEnv.HOME=/path/to/user/ --driver-memory 4G --executor-memory 8G --conf spark.cores.max=16 --conf spark.executor.cores=8'
'if test -f '~/.bash_profile'; then source ~/.bash_profile; fi; `which spark-submit` --master local[2] --conf spark.mesos.principal= --conf spark.mesos.secret= --conf spark.mesos.role= --conf spark.executorEnv.HOME=/path/to/user/ --driver-memory 4G --executor-memory 8G --conf spark.cores.max=16 --conf spark.executor.cores=8'
"""
try:
master_manager = config["STREAM"]["manager"]
Expand Down

0 comments on commit 0e5dd4e

Please sign in to comment.