use https for deps download
This commit is contained in:
parent
1192ee245b
commit
4e306a79cd
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
# cjson
|
# cjson
|
||||||
ExternalProject_Add(cjson
|
ExternalProject_Add(cjson
|
||||||
GIT_REPOSITORY git@github.com:taosdata-contrib/cJSON.git
|
GIT_REPOSITORY https://github.com/taosdata-contrib/cJSON.git
|
||||||
GIT_TAG v1.7.15
|
GIT_TAG v1.7.15
|
||||||
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/cJson"
|
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/cJson"
|
||||||
BINARY_DIR ""
|
BINARY_DIR ""
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
# googletest
|
# googletest
|
||||||
ExternalProject_Add(googletest
|
ExternalProject_Add(googletest
|
||||||
GIT_REPOSITORY git@github.com:taosdata-contrib/googletest.git
|
GIT_REPOSITORY https://github.com/taosdata-contrib/googletest.git
|
||||||
GIT_TAG release-1.11.0
|
GIT_TAG release-1.11.0
|
||||||
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/googletest"
|
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/googletest"
|
||||||
BINARY_DIR ""
|
BINARY_DIR ""
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
# lz4
|
# lz4
|
||||||
ExternalProject_Add(lz4
|
ExternalProject_Add(lz4
|
||||||
GIT_REPOSITORY git@github.com:taosdata-contrib/lz4.git
|
GIT_REPOSITORY https://github.com/taosdata-contrib/lz4.git
|
||||||
GIT_TAG v1.9.3
|
GIT_TAG v1.9.3
|
||||||
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/lz4"
|
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/lz4"
|
||||||
BINARY_DIR ""
|
BINARY_DIR ""
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
# zlib
|
# zlib
|
||||||
ExternalProject_Add(zlib
|
ExternalProject_Add(zlib
|
||||||
GIT_REPOSITORY git@github.com:taosdata-contrib/zlib.git
|
GIT_REPOSITORY https://github.com/taosdata-contrib/zlib.git
|
||||||
GIT_TAG v1.2.11
|
GIT_TAG v1.2.11
|
||||||
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/zlib"
|
SOURCE_DIR "${CMAKE_SOURCE_DIR}/deps/zlib"
|
||||||
BINARY_DIR ""
|
BINARY_DIR ""
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
int vnodeProcessSubmitReq(SVnode *pVnode, SSubmitReq *pReq, SSubmitRsp *pRsp) {
|
int vnodeProcessSubmitReq(SVnode *pVnode, SSubmitReq *pReq, SSubmitRsp *pRsp) {
|
||||||
// TODO: Check inputs
|
// TODO: Check inputs
|
||||||
|
|
||||||
|
#if 0
|
||||||
void *pMem = NULL;
|
void *pMem = NULL;
|
||||||
if ((pMem = amalloc(pVnode->allocator, REQ_SIZE(pReq))) == NULL) {
|
if ((pMem = amalloc(pVnode->allocator, REQ_SIZE(pReq))) == NULL) {
|
||||||
// No more memory to allocate, schedule an async commit
|
// No more memory to allocate, schedule an async commit
|
||||||
|
@ -45,6 +46,7 @@ int vnodeProcessSubmitReq(SVnode *pVnode, SSubmitReq *pReq, SSubmitRsp *pRsp) {
|
||||||
if (tsdbInsert(pVnode->pTsdb, (SSubmitReq *)pMem) < 0) {
|
if (tsdbInsert(pVnode->pTsdb, (SSubmitReq *)pMem) < 0) {
|
||||||
// TODO: handler error
|
// TODO: handler error
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue