Skip to content

Commit e748b56

Browse files
authored
Merge pull request #174 from Yelp/timma/fix_the_user_in_scs
Fixed the user config param in scs_conf
2 parents 3dac49f + 4bef716 commit e748b56

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

service_configuration_lib/spark_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1279,7 +1279,7 @@ def get_spark_conf(
12791279
'jira_ticket': jira_ticket,
12801280
'service_account_name': service_account_name,
12811281
'ui_port': int(ui_port),
1282-
'user': os.environ.get('USER'),
1282+
'user': user or os.environ.get('USER'),
12831283
'aws_account_id': spark_conf.pop('aws_account_id', None),
12841284
}
12851285
spark_conf['scs_conf'] = json.dumps(scs_args, indent=4)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
setup(
1919
name='service_configuration_lib',
20-
version='3.3.7',
20+
version='3.3.8',
2121
provides=['service_configuration_lib'],
2222
description='Start, stop, and inspect Yelp SOA services',
2323
url='https://github.com/Yelp/service_configuration_lib',

0 commit comments

Comments
 (0)