You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, we often hear about a bug with this error message:
Error: Failed to build Configuration from ConfigurationProxy
As far as I know, it was previously fixable by resetting the environment and picking a proper container for Iroha in Docker-compose (dev instead of lts).
git checkout iroha2-dev
# Backup your config here
git reset --hard
git pull
As an example, I'll copy a log provided by Vishal Mahajan running this part of the doc today:
Output:
[+] Running 4/0
⠿ Container iroha-iroha2-1 Created 0.0s
⠿ Container iroha-iroha3-1 Created 0.0s
⠿ Container iroha-iroha0-1 Created 0.0s
⠿ Container iroha-iroha1-1 Created 0.0s
Attaching to iroha-iroha0-1, iroha-iroha1-1, iroha-iroha2-1, iroha-iroha3-1
iroha-iroha0-1 | Error: Failed to build Configuration from ConfigurationProxy
iroha-iroha0-1 |
iroha-iroha0-1 | Caused by:
iroha-iroha0-1 | Proxy failed at build stage due to: maximum_transactions_in_signature_buffer
iroha-iroha0-1 |
iroha-iroha0-1 | Location:
iroha-iroha0-1 | config/src/[iroha.rs:157](http://iroha.rs:157/):14
iroha-iroha1-1 | Error: Failed to build Configuration from ConfigurationProxy
iroha-iroha1-1 |
iroha-iroha1-1 | Caused by:
iroha-iroha1-1 | Proxy failed at build stage due to: maximum_transactions_in_signature_buffer
iroha-iroha1-1 |
iroha-iroha1-1 | Location:
iroha-iroha1-1 | config/src/[iroha.rs:157](http://iroha.rs:157/):14
iroha-iroha3-1 | Error: Failed to build Configuration from ConfigurationProxy
iroha-iroha3-1 |
iroha-iroha3-1 | Caused by:
iroha-iroha3-1 | Proxy failed at build stage due to: maximum_transactions_in_signature_buffer
iroha-iroha2-1 | Error: Failed to build Configuration from ConfigurationProxy
iroha-iroha3-1 |
iroha-iroha2-1 |
iroha-iroha2-1 | Caused by:
iroha-iroha2-1 | Proxy failed at build stage due to: maximum_transactions_in_signature_buffer
iroha-iroha3-1 | Location:
iroha-iroha3-1 | config/src/[iroha.rs:157](http://iroha.rs:157/):14
iroha-iroha2-1 |
iroha-iroha2-1 | Location:
iroha-iroha2-1 | config/src/[iroha.rs:157](http://iroha.rs:157/):14
iroha-iroha0-1 exited with code 1
iroha-iroha1-1 exited with code 1
iroha-iroha3-1 exited with code 1
iroha-iroha2-1 exited with code 1
The current fix is different: one should update the Docker-compose config or add an environment variable.
Example config change was shown by @appetrosyan (please confirm if the text is actual and belongs in docker-compose.yml or another file):
Please add the missing environment variables to the config/compose file.
Specifically, how could each of the QUEUE configuration values be set?
A part of peer/config.json?
Environment variables in docker-compose.yml or bare-metal environment vars? And if so, each variable in the list above is set separately?
I know the last question specifically was asked in Hyperledger Iroha Community, but let's add more specific answers and examples so the doc can be reliably updated.
The text was updated successfully, but these errors were encountered:
Currently, we often hear about a bug with this error message:
As far as I know, it was previously fixable by resetting the environment and picking a proper container for Iroha in Docker-compose (
dev
instead oflts
).git checkout iroha2-dev # Backup your config here git reset --hard git pull
As an example, I'll copy a log provided by Vishal Mahajan running this part of the doc today:
The current fix is different: one should update the Docker-compose config or add an environment variable.
Example config change was shown by @appetrosyan (please confirm if the text is actual and belongs in
docker-compose.yml
or another file):I need additional information.
Specifically, how could each of the
QUEUE
configuration values be set?peer/config.json
?docker-compose.yml
or bare-metal environment vars? And if so, each variable in the list above is set separately?I know the last question specifically was asked in Hyperledger Iroha Community, but let's add more specific answers and examples so the doc can be reliably updated.
The text was updated successfully, but these errors were encountered: