From b318ba6b2f79b4bd07c7b584e3d23bcbcb47a562 Mon Sep 17 00:00:00 2001 From: Yash Joshi Date: Fri, 4 Jun 2021 11:54:18 +0530 Subject: [PATCH 1/2] fix: router prop name --- frontend/src/modules/AppWrapper.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/modules/AppWrapper.tsx b/frontend/src/modules/AppWrapper.tsx index 11e53cd04d..8c9c50d2e9 100644 --- a/frontend/src/modules/AppWrapper.tsx +++ b/frontend/src/modules/AppWrapper.tsx @@ -47,7 +47,7 @@ const App = () => { /> Date: Sat, 5 Jun 2021 11:48:44 +0530 Subject: [PATCH 2/2] choose clickhouse on enter press --- deploy/install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deploy/install.sh b/deploy/install.sh index 4c086dcd98..29d594a0b2 100755 --- a/deploy/install.sh +++ b/deploy/install.sh @@ -316,19 +316,19 @@ SIGNOZ_INSTALLATION_ID=$(curl -s 'https://api64.ipify.org') echo "" echo -e "šŸ‘‰ ${RED}Two ways to go forward\n" -echo -e "${RED}1) ClickHouse as database (recommended for low memory usage)\n" +echo -e "${RED}1) ClickHouse as database (default)\n" echo -e "${RED}2) Kafka + Druid setup to handle scale (recommended for production use)\n" read -p "āš™ļø Enter your preference (1/2):" choice_setup -while [[ $choice_setup == "" || ( $choice_setup != "1" && $choice_setup != "2" ) ]] +while [[ $choice_setup != "1" && $choice_setup != "2" && $choice_setup != "" ]] do # echo $choice_setup echo -e "\nāŒ ${CYAN}Please enter either 1 or 2" - read -rp "āš™ļø Enter your preference (1/2): " choice_setup + read -p "āš™ļø Enter your preference (1/2): " choice_setup # echo $choice_setup done -if [ $choice_setup == "1" ];then +if [[ $choice_setup == "1" || $choice_setup == "" ]];then setup_type='clickhouse' else setup_type='druid'