You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
host = get_host("mturk-requester", client)
...
defp get_host(endpoint_prefix, client) do
if client.region == "local" do
"localhost"
else
"#{endpoint_prefix}.#{client.region}.#{client.endpoint}"
end
end
Since there is a sandbox development endpoint, it would be nice to support the "mturk-requester-sandbox" prefix as well.
The text was updated successfully, but these errors were encountered:
Currently the endpoint prefix is hardcoded for mturk:
Since there is a sandbox development endpoint, it would be nice to support the "mturk-requester-sandbox" prefix as well.
The text was updated successfully, but these errors were encountered: