Skip to content

Commit

Permalink
try setting the timezone in github CI, to see if that fixes the HTCon…
Browse files Browse the repository at this point in the history
…dor tests
  • Loading branch information
dsschult committed Jun 3, 2024
1 parent 52f991f commit 832e758
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/wipac-cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ jobs:
ports:
- 27017:27017
steps:
# set the time zone, so the HTCondor JEL test passes
- uses: szenius/[email protected]
with:
timezoneLinux: "America/Chicago"
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion iceprod/credentials/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ async def patch_cred(self, db, base_data):
argo.add_argument('expiration', type=float, default=0, required=False)
argo.add_argument('last_use', type=float, default=0, required=False)
args = vars(argo.parse_args())
url = args['url']
base_data['url'] = args['url']

data = {}
for key in ('buckets', 'access_key', 'secret_key', 'access_token', 'refresh_token', 'expiration', 'last_use'):
Expand Down

0 comments on commit 832e758

Please sign in to comment.