Skip to content

Commit

Permalink
1.4.64
Browse files Browse the repository at this point in the history
  • Loading branch information
tmaeno committed Apr 21, 2021
1 parent dc124ee commit 3e3ce98
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
** Release Notes

1.4.64
* not to enforce directIO when --trf in pathena

1.4.63
* changed definition of --maxPoints and --maxEvaluationJobs to be per segment

Expand Down
2 changes: 1 addition & 1 deletion pandatools/PandaToolsPkgInfo.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version = "1.4.63"
release_version = "1.4.64"
4 changes: 2 additions & 2 deletions pandatools/PathenaScript.py
Original file line number Diff line number Diff line change
Expand Up @@ -1616,7 +1616,7 @@ def _onExit(dir, files, del_command):
if options.generalInput:
param += '--generalInput '
# use local access for TRF and BS
if (options.trf or runConfig.input.inBS) and not options.forceDirectIO:
if runConfig.input.inBS and not options.forceDirectIO:
param += '--useLocalIO '
# use theApp.nextEvent
if options.useNextEvent:
Expand Down Expand Up @@ -1924,7 +1924,7 @@ def _onExit(dir, files, del_command):
]

# use local IO for trf
if (options.trf or runConfig.input.inBS) and not options.forceDirectIO:
if runConfig.input.inBS and not options.forceDirectIO:
taskParamMap['useLocalIO'] = 1

# use AMI to get the number of events per file
Expand Down
2 changes: 1 addition & 1 deletion pandatools/openidc_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def get_device_code(self, device_auth_endpoint, client_id, audience):
if self.verbose:
self.log_stream.debug('getting device code')
data = {'client_id': client_id,
'scope': "openid profile email offline_access",
'scope': "openid profile email offline_access iam",
'audience': audience}
rdata = urlencode(data).encode()
req = Request(device_auth_endpoint, rdata)
Expand Down

0 comments on commit 3e3ce98

Please sign in to comment.