Skip to content

Commit 2a4aaa1

Browse files
committed
whitespace
1 parent 8f998bc commit 2a4aaa1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/guides/pages/debug-network-traffic.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ spec:
3838
command: ["/bin/bash"]
3939
args:
4040
- -c
41-
# If the dump grows to big, you can use regular tcpdump filters here
41+
# If the dump grows to big, you can use regular tcpdump filters here
4242
# to filter the captured traffic
4343
- tcpdump -i any -w /tmp/tcpdump.pcap
4444
----
@@ -85,7 +85,7 @@ spec:
8585
command: ["/bin/bash"]
8686
args:
8787
- -c
88-
# If the dump grows to big, you can use regular tcpdump filters here
88+
# If the dump grows to big, you can use regular tcpdump filters here
8989
# to filter the captured traffic
9090
- tcpdump -i any -w /tcpdump/tcpdump.pcap
9191
volumeMounts:
@@ -140,7 +140,7 @@ You now see the entire Superset -> Trino conversation, in this case the followin
140140

141141
[source,sql]
142142
----
143-
SELECT date_trunc('day', CAST(tpep_pickup_datetime AS TIMESTAMP)) AS __timestamp, AVG(duration_min) AS "Average trip duration"
143+
SELECT date_trunc('day', CAST(tpep_pickup_datetime AS TIMESTAMP)) AS __timestamp, AVG(duration_min) AS "Average trip duration"
144144
FROM demo.ny_taxi_data GROUP BY date_trunc('day', CAST(tpep_pickup_datetime AS TIMESTAMP)) ORDER BY "Average trip duration" DESC
145145
LIMIT 10000
146146
----

0 commit comments

Comments
 (0)