Trackextension: use http://alice-ccdb.cern.ch#275
Conversation
Trackextension is the only part of the code that uses https://alice-ccdb.cern.ch. A simple move to `http:` should solve the problem with certificates discussed on mattermost. This would also follow the approach in many other places of the code (see `git grep alice-ccdb`). Maybe the CCDB location should be a global property for all tasks anyway.
| const char* ccdbpath_geo = "GLO/Config/Geometry"; | ||
| const char* ccdbpath_grp = "GLO/GRP/GRP"; | ||
| const char* ccdburl = "https://alice-ccdb.cern.ch"; /* test "http://alice-ccdb.cern.ch:8080"; */ | ||
| const char* ccdburl = "http://alice-ccdb.cern.ch"; /* test "http://alice-ccdb.cern.ch:8080"; */ |
There was a problem hiding this comment.
maybe 8080 still needs to be added
There was a problem hiding this comment.
I think 8080 points to the test instance...
There was a problem hiding this comment.
If you don't put https then you have to put 8080 which is the test endpoint
There was a problem hiding this comment.
I don't think so
http://alice-ccdb.cern.ch/browse/GLO/GRP/GRP --> production
http://alice-ccdb.cern.ch:8080/browse/GLO/GRP/GRP --> test
There was a problem hiding this comment.
Yeap!
You're right!
Sorry for the noise!
Thanks Sandro. Yes, the plan is to have this global with the CCDBConfigurable. Ongoing. |
|
@sawenzel did you try this? |
* PWGLF: Add tof NSigma Cascade tester * Please consider the following formatting changes (#275) --------- Co-authored-by: ALICE Builder <alibuild@users.noreply.github.com>
* PWGLF: Add tof NSigma Cascade tester * Please consider the following formatting changes (AliceO2Group#275) --------- Co-authored-by: ALICE Builder <alibuild@users.noreply.github.com>
* PWGLF: Add tof NSigma Cascade tester * Please consider the following formatting changes (AliceO2Group#275) --------- Co-authored-by: ALICE Builder <alibuild@users.noreply.github.com>
Trackextension is the only part of the code that uses https://alice-ccdb.cern.ch. A simple
move to
http:should solve the problem with certificates discussed on mattermost.This would also follow
the approach in many other places of the code (see
git grep alice-ccdb).Maybe the CCDB location should be a global property for all tasks anyway.