Skip to content

Commit

Permalink
int -> str
Browse files Browse the repository at this point in the history
  • Loading branch information
antgonza committed Sep 5, 2024
1 parent d317a0a commit 87c6d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiita_client/testing.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def setUpClass(cls):
cls.client_secret = ('J7FfQ7CQdOxuKhQAf1eoGgBAE81Ns8Gu3EKaWFm3IO2JKh'
'AmmCWZuabe0O5Mp28s1')
# qiita_port needs to be the main worker in qiita, the default is 21174
qiita_port = int(environ.get('QIITA_PORT', '21174'))
qiita_port = environ.get('QIITA_PORT', '21174')
cls.ca_cert = environ.get('QIITA_ROOTCA_CERT')

url = URL.replace('8383', qiita_port)
Expand Down

0 comments on commit 87c6d64

Please sign in to comment.