This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-3072 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 1c065990dd517a9c562fcbe1bd56cf1d3d75ee00 Author: leonidfrolov <[email protected]> AuthorDate: Thu Sep 29 10:15:29 2022 +0300 [DATALAB-3072]: moved connection string to urls --- .../general/scripts/azure/dataengine-service_configure.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_configure.py b/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_configure.py index 7fae27104..5e749f21a 100644 --- a/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_configure.py +++ b/infrastructure-provisioning/src/general/scripts/azure/dataengine-service_configure.py @@ -113,16 +113,17 @@ if __name__ == "__main__": "key_name": hdinsight_conf['key_name'], "Action": "Create new HDInsight cluster", "computational_url": [ - {"description": "HDInsight cluster", - "url": hdinsight_conf['cluster_url']}, + # {"description": "HDInsight cluster", + # "url": hdinsight_conf['cluster_url']}, {"description": "Apache Spark History", "url": hdinsight_conf['cluster_sparkhistory_url']}, - {"description": "Jupyter notebook", - "url": hdinsight_conf['cluster_jupyter_url']}, - {"description": "Zeppelin notebook", - "url": hdinsight_conf['cluster_zeppelin_url']} + {"description": "Connection string", + "url": hdinsight_conf['rstudio_livy_connection']} + # {"description": "Jupyter notebook", + # "url": hdinsight_conf['cluster_jupyter_url']}, + # {"description": "Zeppelin notebook", + # "url": hdinsight_conf['cluster_zeppelin_url']} ], - "Connection_string": hdinsight_conf['rstudio_livy_connection'] } result.write(json.dumps(res)) except Exception as err: --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
