I noticed we have different configuration directory and file in this project
|
path_to_config_dir <- rappdirs::user_config_dir("rirods") |
|
create_config_dir(path_to_config_dir) |
|
file.path(path_to_config_dir, "conf-irods.json") |
u0137480@CRD-L-12921:~$ cat /home/u0137480/.config/rirods/conf-irods.json
{
"host": "https://gbiomed.irods.icts.kuleuven.be/irods-http-api/0.6.0",
"irods_home": "/gbiomed/home",
"api_version": "0.6.0",
"build": "a508685930b9b409a483094f019aa6349fc90a28",
"irods_zone": "gbiomed",
"max_number_of_parallel_write_streams": 3,
"max_number_of_rows_per_catalog_query": 15,
"max_size_of_request_body_in_bytes": 8388608,
"openid_connect_enabled": true
}
I'm trying to understand why we have this different configuration file, and I haven't been able to find any documentation that explains its purpose or differences. But I can verify that with this way I can interact with 2 different irods zone (by rirods and another irods client) in the same machine.
I noticed we have different configuration directory and file in this project
irods_client_library_rirods/R/irods-conf.R
Lines 19 to 21 in defa2ca
I'm trying to understand why we have this different configuration file, and I haven't been able to find any documentation that explains its purpose or differences. But I can verify that with this way I can interact with 2 different irods zone (by rirods and another irods client) in the same machine.