We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inicialitzar el servei amb dos URLs (url_production i url_test) i utilitzar una o altra en funció de si és test o no.
url_production
url_test
if self.test_mode and self.url_test: address = '{0}{1}'.format(self.url_test, config['type_address']) service = client.create_service(config['binding_name'], address) elif not self.test_mode and self.url_production: address = '{0}{1}'.format(self.url_production, config['type_address']) service = client.create_service(config['binding_name'], address) else: service = client.service return service
The text was updated successfully, but these errors were encountered:
gdalmau
No branches or pull requests
Inicialitzar el servei amb dos URLs (
url_production
iurl_test
) i utilitzar una o altra en funció de si és test o no.The text was updated successfully, but these errors were encountered: