Skip to content

Commit 7f1f366

Browse files
authored
Merge branch 'devel' into 1724-DAPS-feature-python-client-support-task-and-direct-response-allocation-create
2 parents ddceb55 + 90d94be commit 7f1f366

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

repository/gridftp/globus5/authz/tests/integration/test_gsi_authz_init.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ std::string get_env_or_default(const char* env_name, const std::string& default_
3838
}
3939

4040
const std::string repo_id = "repo/samoas";
41-
const std::string default_server_key_path = "../../mock_core/datafed-mock-core-key.pub";
41+
const std::string default_server_key_path = "./mock-datafed-core-key.pub";
4242
const std::string server_address = "tcp://localhost:9998";
4343
const std::string pub_key_path = "./datafed-repo-key.pub";
4444
const std::string pub_key = "Wxwm^-Cf7cJrqS)}/B?cDAq(L=@AwSA*({jhBu1]";

scripts/globus/generate_web_server_credentials.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import utils
66

77
import os, sys
8+
import urllib.parse
89

910
CLIENT_ID = "d7a7db79-c746-4947-9273-54cf578e4785"
1011

@@ -40,7 +41,7 @@
4041
DOMAIN = os.getenv("DATAFED_DOMAIN", default_DOMAIN)
4142
if len(DOMAIN) == 0:
4243
DOMAIN = default_DOMAIN
43-
REDIRECT_PATH = os.path.join("https://", DOMAIN, "ui/authn")
44+
REDIRECT_PATH = urllib.parse.urljoin(f"https://{DOMAIN}","ui/authn")
4445

4546
# begin oauth
4647
client = globus_sdk.NativeAppAuthClient(CLIENT_ID)

0 commit comments

Comments
 (0)