Skip to content

Commit

Permalink
Fix default user name label
Browse files Browse the repository at this point in the history
  • Loading branch information
chi-yelp committed Feb 21, 2024
1 parent c8f0180 commit 8b145fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service_configuration_lib/spark_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def _get_k8s_spark_env(
_paasta_cluster = utils.get_k8s_resource_name_limit_size_with_hash(paasta_cluster)
_paasta_service = utils.get_k8s_resource_name_limit_size_with_hash(paasta_service)
_paasta_instance = utils.get_k8s_resource_name_limit_size_with_hash(paasta_instance)
user = os.environ.get('USER', '_unspecified_')
user = os.environ.get('USER', 'UNSPECIFIED')

spark_env = {
'spark.master': f'k8s://https://k8s.{paasta_cluster}.paasta:6443',
Expand Down

0 comments on commit 8b145fe

Please sign in to comment.