- Mar 20, 2025
-
-
Bartek Wrona authored
-
- Mar 13, 2025
-
-
Dan Notestein authored
-
Dan Notestein authored
fix:modify dependencies in setup.py and requirements.txt to update requests... See merge request !17
-
- Mar 09, 2025
-
-
Brian of London authored
Signed-off-by:
Brian of London (home imac) <brian@v4v.app>
-
Brian of London authored
fix:modify dependencies in setup.py and requirements.txt to update requests and websocket-client to increase compatibility with other packages. chore: update version to 0.26.1 Signed-off-by:
Brian of London (home imac) <brian@v4v.app>
-
- Mar 04, 2024
-
-
Bartek Wrona authored
Set fixed versions of packages in setup.py See merge request !15
-
Krzysztof Mochocki authored
-
- Feb 22, 2024
-
-
Bartek Wrona authored
Adjust testdev chain to new prefix - STM See merge request !14
-
Mateusz Kudela authored
-
- Apr 12, 2023
-
-
Bartek Wrona authored
Eliminated deprecated codecov package See merge request !13
-
Bartek Wrona authored
-
Bartek Wrona authored
-
- Oct 06, 2022
-
-
Bartek Wrona authored
Prioritize HIVE_CHAIN_ID property for the chain selection Closes #9 See merge request !12
-
Bartek Wrona authored
Changes specific to HF25 done in https://github.com/holgern/beem master branch See merge request !11
-
Brian of London authored
Merge remote-tracking branch 'origin/bw_holgern2gitlab_master' into brianoflondon/fix-encrypted-transfer-cfoxon
-
Brian of London authored
Signed-off-by:
Brian of London <brian@podping.org>
-
Bartek Wrona authored
-
Brian of London authored
Fix originally done by cfoxon d12631cc131fe9b4846617e21b9d7988360b3433
-
Brian of London authored
Taken from this commit: 108e2e25 By Holger
-
Brian of London authored
when both `HIVE_CHAIN_ID` and `STEEM_CHAIN_ID` returns valid IDs, Hive is selected as a network. Emre Yılmaz authored6/26/2021 @ 9:12 PM GitHub committed6/26/2021 @ 9:12 PM parent: Apply this commit: cb1ed699 from Github
-
- Oct 04, 2022
-
-
Bartek Wrona authored
Updated library/package version and description See merge request !10
-
Bartek Wrona authored
- Updated description (eliminated steem from supported blockchain list, since its possible that introduced changes are not backward compatible to it anymore)
-
Bartek Wrona authored
Eliminated usage of HF24 deprecated follow_api See merge request !9
-
Bartek Wrona authored
-
Bartek Wrona authored
-
Bartek Wrona authored
get_blog/get_blog_entries calls switched into condenser API (removed usage of deprecated follow_api)
-
Bartek Wrona authored
-
- Aug 29, 2022
-
-
Bartek Wrona authored
Update requests from 2.25.1 to 2.27.1 See merge request !8
-
Piotr Batko authored
-
- Aug 05, 2022
-
-
Bartek Wrona authored
Remove race condition during creation of directory for SQLiteFile See merge request !7
-
- Jul 29, 2022
-
-
Piotr Batko authored
When multiple instances of beem was run in parallel, following error appeared from time to time (the detailed content of error is attached at the very bottom): ``` > mkdir(name, mode) E FileExistsError: [Errno 17] File exists: '/root/.local/share/beem' /usr/lib/python3.8/os.py:223: FileExistsError ``` I assume that problem occured, because two processes at the same time checked if directory exists. Both received same answer -- directory doesn't exists. So first successfully created the directory, and second one failed with this error. Solution implemented in this commit, is to accept situation, when directory already exists. Detailed error description: ``` /builds/hive/hive/venv/lib/python3.8/site-packages/beem-0.24.22-py3.8.egg/beem/blockchaininstance.py:186: in __init__ self.config = kwargs.get("config_store", get_default_config_store(**kwargs)) /builds/hive/hive/venv/lib/python3.8/site-packages/beem-0.24.22-py3.8.egg/beem/storage.py:46: in get_default_config_store return generate_config_store(SqliteConfigurationStore, blockchain="hive")(*args, **kwargs) /builds/hive/hive/venv/lib/python3.8/site-packages/beem-0.24.22-py3.8.egg/beemstorage/sqlite.py:198: in __init__ SQLiteFile.__init__(self, *args, **kwargs) /builds/hive/hive/venv/lib/python3.8/site-packages/beem-0.24.22-py3.8.egg/beemstorage/sqlite.py:59: in __init__ os.makedirs(self.data_dir) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ name = '/root/.local/share/beem', mode = 511, exist_ok = False def makedirs(name, mode=0o777, exist_ok=False): """makedirs(name [, mode=0o777][, exist_ok=False]) Super-mkdir; create a leaf directory and all intermediate ones. Works like mkdir, except that any intermediate path segment (not just the rightmost) will be created if it does not exist. If the target directory already exists, raise an OSError if exist_ok is False. Otherwise no exception is raised. This is recursive. """ head, tail = path.split(name) if not tail: head, tail = path.split(head) if head and tail and not path.exists(head): try: makedirs(head, exist_ok=exist_ok) except FileExistsError: # Defeats race condition when another thread created the path pass cdir = curdir if isinstance(tail, bytes): cdir = bytes(curdir, 'ASCII') if tail == cdir: # xxx/newdir/. exists if xxx/newdir exists return try: > mkdir(name, mode) E FileExistsError: [Errno 17] File exists: '/root/.local/share/beem' /usr/lib/python3.8/os.py:223: FileExistsError ```
-
- Jun 30, 2021
-
-
Holger authored
-
- Jun 26, 2021
-
-
Holger authored
reverting change to operationsid for HF24, please uncoment line 158 in file beembase\operationids.py for using in HF25
-
Holger authored
-
Holger authored
-
Holger Nahrstaedt authored
Prioritize HIVE_CHAIN_ID property for the chain selection
-
Emre Yılmaz authored
when both `HIVE_CHAIN_ID` and `STEEM_CHAIN_ID` returns valid IDs, Hive is selected as a network.
-
- Jun 22, 2021
-
-
Holger Nahrstaedt authored
hf25 ops addition
-
- Jun 18, 2021
-
-
Isaiah Croatt authored
-
Isaiah Croatt authored
-