Skip to content

Commit

Permalink
Fixing pgrep command in test_flight_sql.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
prmoore77 committed Feb 29, 2024
1 parent 3b5beac commit 5f7385f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/test_flight_sql.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ started="0"
# Check if the process is running
while [ $elapsed_time -lt $timeout_limit ]; do
# Check if the process is running using --exact to match the whole process name
if pgrep --exact "flight_sql_server" > /dev/null; then
if pgrep "flight_sql" > /dev/null; then
echo "Flight SQL Server process started successfully!"
started="1"
# Sleep for a few more seconds...
Expand Down

0 comments on commit 5f7385f

Please sign in to comment.