conan: Question: What does "ERROR: . [Remote: ci]" mean?
To help us debug your issue please explain:
- I’ve read the CONTRIBUTING guide.
- I’ve specified the Conan version, operating system version and any tool that can be relevant.
- I’ve explained the steps to reproduce the error or the motivation/use case of the question/suggestion.
Conan v1.0.2
I have no idea what Conan is trying to tell me here.
david@balrog:~$ conan install freeopcua/1.8.0@wsbu/stable --build missing --build outdated --update
freeopcua/1.8.0@wsbu/stable: Installing package
Requirements
Boost/1.64.0@wsbu/stable from ci
bzip2/1.0.6@conan/stable from conan-center
freeopcua/1.8.0@wsbu/stable from ci
googletest/1.8.0@wsbu/stable from ci
zlib/1.2.11@conan/stable from conan-center
Packages
Boost/1.64.0@wsbu/stable:ab6671ce24bf75c2739ef669ce2a5887ea6a745f
bzip2/1.0.6@conan/stable:d50a0d523d98c15bb147b18fa7d203887c38be8b
freeopcua/1.8.0@wsbu/stable:7dc92a71d100e411d973b9f63ddf97d50edbb291
googletest/1.8.0@wsbu/stable:27cb7fbffba1a5268eda91c4da54b0254d48c3b1
zlib/1.2.11@conan/stable:6ae331b72e7e265ca2a3d1d8246faf73aa030238
bzip2/1.0.6@conan/stable: Package is up to date
googletest/1.8.0@wsbu/stable: Package is up to date
zlib/1.2.11@conan/stable: Package is up to date
Boost/1.64.0@wsbu/stable: Package is up to date
bzip2/1.0.6@conan/stable: Already installed!
googletest/1.8.0@wsbu/stable: Already installed!
zlib/1.2.11@conan/stable: WARN: Current package is newer than remote upstream one
zlib/1.2.11@conan/stable: Already installed!
Boost/1.64.0@wsbu/stable: Already installed!
Boost/1.64.0@wsbu/stable: WARN: Use 'self.collect_libs' is deprecated, use tools.collect_libs(self) instead
Boost/1.64.0@wsbu/stable: LIBRARIES: ['boost_graph', 'boost_math_tr1f', 'boost_chrono', 'boost_program_options', 'boost_unit_test_framework', 'boost_iostreams', 'boost_serialization', 'boost_random', 'boost_system', 'boost_wserialization', 'boost_regex', 'boost_signals', 'boost_math_tr1', 'boost_timer', 'boost_atomic', 'boost_log_setup', 'boost_locale', 'boost_coroutine', 'boost_type_erasure', 'boost_math_c99l', 'boost_test_exec_monitor', 'boost_fiber', 'boost_prg_exec_monitor', 'boost_log', 'boost_filesystem', 'boost_math_c99', 'boost_math_c99f', 'boost_wave', 'boost_math_tr1l', 'boost_container', 'boost_date_time', 'boost_context', 'boost_exception', 'boost_thread']
ERROR: . [Remote: ci]
david@balrog:~$
About this issue
- Original URL
- State: closed
- Created 6 years ago
- Reactions: 1
- Comments: 15 (9 by maintainers)
Cool 😃 I like it. Thank you!
There is a subtle difference in how it is processed when conan tries to retrieve a package from any of the remotes (iterating as you show), and only from 1 remote, because it is already defined (because it was previously uploaded/downloaded from that remote). The first case has a complete error message, while the second case happens to not capture the NotFoundException and then it is not providing an useful message, just an empty one. The PR I am submitting fixes this, captures NotFoundException and provide such message, just changing “in remotes” by the associated remote.