We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d25782 commit b6f8f83Copy full SHA for b6f8f83
qa/workunits/fs/snaps/snaptest-git-ceph.sh
@@ -8,6 +8,11 @@ sudo git config --global http.postBuffer 1024MB # default is 1MB
8
sudo git config --global http.maxRequestBuffer 100M # default is 10MB
9
sudo git config --global core.compression 0
10
11
+# enable the debug logs for git clone
12
+export GIT_TRACE_PACKET=1
13
+export GIT_TRACE=1
14
+export GIT_CURL_VERBOSE=1
15
+
16
# try it again if the clone is slow and the second time
17
retried=false
18
trap -- 'retry' EXIT
@@ -21,6 +26,11 @@ timeout 1800 git clone https://git.ceph.com/ceph.git
21
26
trap - EXIT
22
27
cd ceph
23
28
29
+# disable the debug logs for git clone
30
+export GIT_TRACE_PACKET=0
31
+export GIT_TRACE=0
32
+export GIT_CURL_VERBOSE=0
33
24
34
versions=`seq 1 90`
25
35
36
for v in $versions
0 commit comments