Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UnicodeDecodeError: 'ascii' codec can't decode byte 0xcc in position 62: ordinal not in range(128) #692

Closed
lyoshenka opened this issue Jun 14, 2017 · 13 comments
Assignees
Labels
type: bug Existing functionality is wrong or broken
Milestone

Comments

@lyoshenka
Copy link
Member

@jackrobison happens reliably when downloading lbry://casually-successful

017-06-14 08:51:55,726 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://casually-successful status changed to initializing
2017-06-14 08:51:55,728 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://casually-successful status changed to downloading_metadata
2017-06-14 08:51:55,728 INFO     lbrynet.core.client.ConnectionManager:38: Connection Manager 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 initialized
2017-06-14 08:51:55,754 INFO     lbrynet.lbryfile.EncryptedFileMetadataManager:246: Saved sd blob hash 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 to stream hash 9dba62280f52ecb18c8c675e9128b8e0b3ebe9e68e8357e8bbeb3f85c9ba5867802dab08efe70818f048035082ebba10
2017-06-14 08:51:55,765 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://casually-successful status changed to running
Traceback (most recent call last):
  File "logging/handlers.py", line 76, in emit
  File "logging/handlers.py", line 156, in shouldRollover
  File "logging/__init__.py", line 734, in format
  File "logging/__init__.py", line 465, in format
  File "logging/__init__.py", line 329, in getMessage
UnicodeDecodeError: 'ascii' codec can't decode byte 0xcc in position 62: ordinal not in range(128)
@jackrobison
Copy link
Member

The serialized claim value:
080110011a8c03080112c402080410011a7243617375616c6c79204578706c61696e65643a20486f7720746f204d616b6520612053ccb6ccb7ccb675ccb6ccb7ccb663ccb6ccb7ccb663ccb6ccb7ccb665ccb6ccb7ccb673ccb6ccb7ccb673ccb6ccb7ccb666ccb6ccb7ccb675ccb6ccb7ccb66c20596f7554756265204368616e6e656c223d49206d6179206861766520737769746368656420746865206368617261637465727320696e207468617420656d61696c20696e746572616374696f6e2e2a1243617375616c6c79204578706c61696e65643221436f7079726967687420323031372043617375616c6c79204578706c61696e656438004a4e68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f66696c65732e6c6272792e696f2f7468756d626e61696c732f63617375616c6c792d796f75747562652d6368616e6e656c2e6a706752005a001a41080110011a308d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b12209766964656f2f6d70342a5c080110031a406350bf0814b5b3c7545e9e6a49be22577d8bcf9f1a32c05dcafb2af19a81205798467ea8e24ba4039c315ab77685882a88e23f30223116f6f0245cdcd5949a1c22141f30267438257020f08abf452746a48e53a71ad5

The problem field:
Casually Explained: How to Make a S\u0336\u0337\u0336u\u0336\u0337\u0336c\u0336\u0337\u0336c\u0336\u0337\u0336e\u0336\u0337\u0336s\u0336\u0337\u0336s\u0336\u0337\u0336f\u0336\u0337\u0336u\u0336\u0337\u0336l YouTube Channel

@kauffj
Copy link
Member

kauffj commented Jun 14, 2017

Well, we should support unicode in metadata at a minimum.

@REILLYSMITH you may want to republish lbry://casually-successful in the interim.

Here's the video on YouTube: https://www.youtube.com/watch?v=nhEn-qW9HEc

@jackrobison
Copy link
Member

Looks like a perfect place to use HTTP status code 732

@kaykurokawa
Copy link
Contributor

kaykurokawa commented Jun 15, 2017

Are you sure this is happening when calling get?

I didn't encounter this errors while doing a 'get' on lbry://casually-successful

However, this occurs when I do a file_delete on lbry://casually-successful , this is the exception below. This exception being thrown does not affect the program flow.

Traceback (most recent call last):
File "/usr/lib/python2.7/logging/handlers.py", line 76, in emit
if self.shouldRollover(record):
File "/usr/lib/python2.7/logging/handlers.py", line 156, in shouldRollover
msg = "%s\n" % self.format(record)
File "/usr/lib/python2.7/logging/init.py", line 734, in format
return fmt.format(record)
File "/usr/lib/python2.7/logging/init.py", line 465, in format
record.message = record.getMessage()
File "/usr/lib/python2.7/logging/init.py", line 329, in getMessage
msg = msg % self.args
UnicodeDecodeError: 'ascii' codec can't decode byte 0xcc in position 49: ordinal not in range(128)
Logged from file Daemon.py, line 1629
Traceback (most recent call last):
File "/usr/lib/python2.7/logging/init.py", line 861, in emit
msg = self.format(record)
File "/usr/lib/python2.7/logging/init.py", line 734, in format
return fmt.format(record)
File "/usr/lib/python2.7/logging/init.py", line 465, in format
record.message = record.getMessage()
File "/usr/lib/python2.7/logging/init.py", line 329, in getMessage
msg = msg % self.args
UnicodeDecodeError: 'ascii' codec can't decode byte 0xcc in position 49: ordinal not in range(128)
Logged from file Daemon.py, line 1629

@tzarebczan
Copy link
Contributor

This happens after downloading the video I believe, or trying to (through the app). Then when you go back in, you can't even click on play, everything frozen.

@kaykurokawa
Copy link
Contributor

@tzarebczan can you post the log of what happens here?

@kaykurokawa
Copy link
Contributor

kaykurokawa commented Jun 15, 2017

This fixes the error for me in file_delete but not sure if it will for others : #697

@tzarebczan
Copy link
Contributor

tzarebczan commented Jun 16, 2017

2017-06-13 19:01:54,282 INFO     lbrynet.lbrynet_daemon.DaemonControl:92: Starting lbrynet-daemon from command line
2017-06-13 19:01:59,525 INFO     lbrynet.lbrynet_daemon.DaemonServer:64: Using non-authenticated API
2017-06-13 19:01:59,546 INFO     lbrynet.lbrynet_daemon.Daemon:254: Starting lbrynet-daemon
2017-06-13 19:01:59,569 INFO     lbrynet.lbrynet_daemon.ExchangeRateManager:174: Starting exchange rate manager
2017-06-13 19:01:59,977 INFO     lbrynet.lbrynet_daemon.Daemon:281: Platform: {"lbrynet_version": "0.11.0", "platform": "Windows-7-6.1.7601-SP1", "os_system": "Windows", "python_version": "2.7.13", "os_release": "7", "lbryum_version": "2.7.25", "ip": "Could not determine IP", "lbryschema_version": "0.0.7", "processor": "x86 Family 6 Model 60 Stepping 3, GenuineIntel", "build": "release"}
2017-06-13 19:01:59,989 INFO     lbrynet.lbrynet_daemon.Daemon:488: Loading databases
2017-06-13 19:01:59,989 WARNING  lbrynet.lbrynet_daemon.Daemon:499: db_revision file not found. Creating it
2017-06-13 19:02:00,000 INFO     lbrynet.lbrynet_daemon.Daemon:516: Upgrading your databases
2017-06-13 19:02:00,000 INFO     lbrynet.db_migrator.migrate1to2:9: Doing the migration
2017-06-13 19:02:00,000 INFO     lbrynet.db_migrator.migrate1to2:11: Migration succeeded
2017-06-13 19:02:00,010 INFO     lbrynet.db_migrator.migrate2to3:9: Doing the migration
2017-06-13 19:02:00,010 INFO     lbrynet.db_migrator.migrate2to3:11: Migration succeeded
2017-06-13 19:02:00,010 INFO     lbrynet.lbrynet_daemon.Daemon:512: Finished upgrading the databases.
2017-06-13 19:02:00,010 INFO     lbrynet.lbrynet_daemon.Daemon:558: Using lbryum wallet
2017-06-13 19:02:04,405 INFO     lbrynet.core.Session:254: Starting DHT
2017-06-13 19:02:05,907 INFO     lbrynet.dht.protocol:210: DHT listening on UDP 4444
2017-06-13 19:02:05,917 INFO     lbrynet.core.RateLimiter:72: Starting <lbrynet.core.RateLimiter.RateLimiter object at 0x035D38B0>
2017-06-13 19:02:05,917 INFO     lbrynet.core.BlobManager:97: Setting up the DiskBlobManager. blob_dir: C:\Users\IEUser\AppData\Roaming\lbrynet\blobfiles, db_file: C:\Users\IEUser\AppData\Roaming\lbrynet\blobs.db
2017-06-13 19:02:06,313 INFO     lbrynet.core.Wallet:1126: Loading the wallet
2017-06-13 19:02:12,124 INFO     lbrynet.core.Wallet:1217: Local Height: 190751, remote height: 190766, behind: 3
2017-06-13 19:02:12,375 INFO     lbrynet.core.Wallet:1217: Local Height: 190766, remote height: 190766, behind: 0
2017-06-13 19:02:12,375 INFO     lbrynet.core.Wallet:1225: Wallet Loaded
2017-06-13 19:02:12,375 INFO     lbrynet.core.Wallet:1150: Subscribing to addresses
2017-06-13 19:02:12,476 INFO     lbrynet.core.Wallet:1152: Synchronized wallet
2017-06-13 19:02:12,479 INFO     lbrynet.core.BlobAvailability:30: Starting <lbrynet.core.BlobAvailability.BlobAvailabilityTracker object at 0x034E68F0>
2017-06-13 19:02:12,486 INFO     lbrynet.lbrynet_daemon.Daemon:531: Starting to setup up file manager
2017-06-13 19:02:12,546 INFO     lbrynet.lbryfilemanager.EncryptedFileManager:126: Started 0 lbry files
2017-06-13 19:02:12,546 INFO     lbrynet.lbrynet_daemon.Daemon:542: Done setting up file manager
2017-06-13 19:02:12,546 INFO     lbrynet.lbrynet_daemon.Daemon:271: Starting balance: 0
2017-06-13 19:02:12,546 INFO     lbrynet.lbrynet_daemon.Daemon:248: Started lbrynet-daemon
2017-06-13 19:02:12,546 INFO     lbrynet.lbrynet_daemon.Daemon:249: 0 blobs in manager
2017-06-13 19:02:12,641 INFO     lbrynet.core.Wallet:809: Resolving lbry://one
2017-06-13 19:02:25,592 INFO     lbrynet.core.Wallet:809: Resolving lbry://@CasuallyExplained/casually-successful
2017-06-13 19:02:25,694 INFO     lbrynet.core.Wallet:809: Resolving lbry://@IGNonLBRY/linked-ep5
2017-06-13 19:02:25,707 INFO     lbrynet.core.Wallet:809: Resolving lbry://fightofthecentury
2017-06-13 19:02:25,707 INFO     lbrynet.core.Wallet:809: Resolving lbry://@IGNonLBRY/linked-ep6
2017-06-13 19:02:25,756 INFO     lbrynet.core.Wallet:809: Resolving lbry://LendersDen
2017-06-13 19:02:25,775 INFO     lbrynet.core.Wallet:809: Resolving lbry://@HeckBender:1/nsa
2017-06-13 19:02:26,437 INFO     lbrynet.core.Wallet:809: Resolving lbry://@oscopelabs/itsadisaster-sd
2017-06-13 19:02:27,572 INFO     lbrynet.core.Wallet:809: Resolving lbry://@CasuallyExplained:1/casually-flirting
2017-06-13 19:02:28,022 INFO     lbrynet.core.Wallet:809: Resolving lbry://WilliamsburgFashion1
2017-06-13 19:02:28,661 INFO     lbrynet.core.Wallet:809: Resolving lbry://LooseCannon
2017-06-13 19:02:29,176 INFO     lbrynet.core.Wallet:809: Resolving lbry://coherence-trailer
2017-06-13 19:02:31,249 INFO     lbrynet.core.Wallet:809: Resolving lbry://rare-exports-trailer
2017-06-13 19:02:33,630 INFO     lbrynet.core.Wallet:809: Resolving lbry://thelastjedi-trailer
2017-06-13 19:02:34,344 INFO     lbrynet.core.Wallet:809: Resolving lbry://thelovewitch-trailer
2017-06-13 19:02:35,789 INFO     lbrynet.core.Wallet:809: Resolving lbry://dunkirk-trailer1
2017-06-13 19:02:36,210 INFO     lbrynet.core.Wallet:809: Resolving lbry://itsadisaster-trailer
2017-06-13 19:02:36,322 INFO     lbrynet.core.Wallet:809: Resolving lbry://bellflower-trailer
2017-06-13 19:02:36,351 INFO     lbrynet.core.Wallet:809: Resolving lbry://bladerunner2049-trailer
2017-06-13 19:02:36,667 INFO     lbrynet.core.Wallet:809: Resolving lbry://kedi-trailer
2017-06-13 19:02:37,615 INFO     lbrynet.core.Wallet:809: Resolving lbry://jinglebellrocks-trailer
2017-06-13 19:02:38,197 INFO     lbrynet.core.Wallet:809: Resolving lbry://itsadisaster-sd
2017-06-13 19:02:38,867 INFO     lbrynet.core.Wallet:809: Resolving lbry://nightofthelivingdead
2017-06-13 19:02:38,878 INFO     lbrynet.core.Wallet:809: Resolving lbry://rare-exports
2017-06-13 19:02:39,127 INFO     lbrynet.core.Wallet:809: Resolving lbry://cinemasix
2017-06-13 19:02:39,378 INFO     lbrynet.core.Wallet:809: Resolving lbry://themechanicalmonster
2017-06-13 19:02:39,960 INFO     lbrynet.core.Wallet:809: Resolving lbry://@1791L/culture-ep4
2017-06-13 19:02:40,019 INFO     lbrynet.core.Wallet:809: Resolving lbry://hellion
2017-06-13 19:02:40,065 INFO     lbrynet.core.Wallet:809: Resolving lbry://bellflower
2017-06-13 19:02:41,407 INFO     lbrynet.core.Wallet:809: Resolving lbry://skateyrselfclean
2017-06-13 19:02:41,408 INFO     lbrynet.core.Wallet:809: Resolving lbry://smlawncare
2017-06-13 19:02:41,448 INFO     lbrynet.core.Wallet:809: Resolving lbry://two
2017-06-13 19:02:41,891 INFO     lbrynet.core.Wallet:809: Resolving lbry://three-2
2017-06-13 19:02:41,997 INFO     lbrynet.core.Wallet:809: Resolving lbry://four
2017-06-13 19:02:42,092 INFO     lbrynet.core.Wallet:809: Resolving lbry://five
2017-06-13 19:02:42,589 INFO     lbrynet.core.Wallet:809: Resolving lbry://six
2017-06-13 19:02:45,480 INFO     lbrynet.core.Wallet:809: Resolving lbry://seven
2017-06-13 19:02:45,575 INFO     lbrynet.core.Wallet:809: Resolving lbry://eight
2017-06-13 19:02:45,575 INFO     lbrynet.core.Wallet:809: Resolving lbry://nine
2017-06-13 19:02:45,667 INFO     lbrynet.core.Wallet:809: Resolving lbry://ten
2017-06-13 19:02:45,678 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-WtrLpRZv8qg
2017-06-13 19:02:46,026 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb--TvGZVGAFEY
2017-06-13 19:02:46,059 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-iC-NIQmjyBw
2017-06-13 19:02:46,085 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-U9aHFLBVdt4
2017-06-13 19:02:46,203 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-K49oU-djk-k
2017-06-13 19:02:47,444 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-Fu4H5nYH8Wk
2017-06-13 19:02:47,999 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-kYNI-FZk1jY
2017-06-13 19:02:48,536 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-kpjywuTwpMc
2017-06-13 19:02:48,934 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-2sFj4aSWQ3o
2017-06-13 19:02:49,009 INFO     lbrynet.core.Wallet:809: Resolving lbry://ucb-WLpvUGjvmXc
2017-06-13 19:33:45,697 INFO     lbrynet.core.Wallet:809: Resolving lbry://@CasuallyExplained/casually-successful
2017-06-13 19:33:51,795 INFO     lbrynet.lbrynet_daemon.Daemon:2376: Need sd blob
2017-06-13 19:33:52,075 INFO     lbrynet.core.client.ConnectionManager:38: Connection Manager 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 initialized
2017-06-13 19:33:53,411 INFO     lbrynet.core.client.BlobRequester:395: Offered rate 0.000000/mb accepted by 80.114.141.228
2017-06-13 19:33:53,769 INFO     lbrynet.core.client.BlobRequester:545: Blob 8d20e99a127c90c7 has been successfully downloaded from 80.114.141.228:3333
2017-06-13 19:33:53,770 INFO     lbrynet.core.client.ClientProtocol:144: Closing the connection to 80.114.141.228:3333 due to having no further requests to send
2017-06-13 19:33:54,362 INFO     lbrynet.lbrynet_daemon.Daemon:2391: check peers for 5 of 5 blobs in stream
2017-06-13 19:34:17,654 INFO     lbrynet.core.Wallet:634: Skipping dust
2017-06-13 19:36:22,697 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://casually-successful status changed to initializing
2017-06-13 19:36:22,770 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://casually-successful status changed to downloading_metadata
2017-06-13 19:36:22,770 INFO     lbrynet.core.client.ConnectionManager:38: Connection Manager 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 initialized
2017-06-13 19:36:23,283 INFO     lbrynet.lbryfile.EncryptedFileMetadataManager:246: Saved sd blob hash 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 to stream hash 9dba62280f52ecb18c8c675e9128b8e0b3ebe9e68e8357e8bbeb3f85c9ba5867802dab08efe70818f048035082ebba10
2017-06-13 19:36:27,089 INFO     lbrynet.lbrynet_daemon.Downloader:94: Downloading stream descriptor blob (2 seconds)
2017-06-13 19:36:27,697 INFO     lbrynet.lbrynet_daemon.Downloader:94: Downloading stream descriptor blob (3 seconds)
2017-06-13 19:36:28,697 INFO     lbrynet.lbrynet_daemon.Downloader:94: Downloading stream descriptor blob (4 seconds)
2017-06-13 19:36:29,601 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://casually-successful status changed to running
2017-06-13 19:36:32,059 CRITICAL twisted:154: Unhandled error in Deferred:
2017-06-13 19:36:32,145 CRITICAL twisted:154: 
Traceback (most recent call last):
  File "site-packages\twisted\internet\defer.py", line 1299, in _inlineCallbacks
  File "site-packages\lbrynet\lbrynet_daemon\Downloader.py", line 192, in download
  File "site-packages\lbrynet\lbrynet_daemon\Downloader.py", line 70, in download_path
  File "ntpath.py", line 85, in join
UnicodeDecodeError: 'ascii' codec can't decode byte 0xcc in position 41: ordinal not in range(128)
2017-06-13 19:36:35,546 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (5 seconds)
2017-06-13 19:36:35,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (6 seconds)
2017-06-13 19:36:36,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (7 seconds)
2017-06-13 19:36:37,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (8 seconds)
2017-06-13 19:36:38,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (9 seconds)
2017-06-13 19:36:39,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (10 seconds)
2017-06-13 19:36:40,704 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (11 seconds)
2017-06-13 19:36:41,704 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (12 seconds)
2017-06-13 19:36:42,701 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (13 seconds)
2017-06-13 19:36:43,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (14 seconds)
2017-06-13 19:36:45,769 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (15 seconds)
2017-06-13 19:36:46,984 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (16 seconds)
2017-06-13 19:36:47,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (17 seconds)
2017-06-13 19:36:48,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (18 seconds)
2017-06-13 19:36:49,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (19 seconds)
2017-06-13 19:36:50,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (20 seconds)
2017-06-13 19:36:51,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (21 seconds)
2017-06-13 19:36:52,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (22 seconds)
2017-06-13 19:36:54,150 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (23 seconds)
2017-06-13 19:36:54,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (24 seconds)
2017-06-13 19:36:57,153 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (26 seconds)
2017-06-13 19:36:59,459 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (27 seconds)
2017-06-13 19:37:02,914 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (28 seconds)
2017-06-13 19:37:02,917 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (28 seconds)
2017-06-13 19:37:03,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (29 seconds)
2017-06-13 19:37:04,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (30 seconds)
2017-06-13 19:37:05,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (31 seconds)
2017-06-13 19:37:06,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (32 seconds)
2017-06-13 19:37:07,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (33 seconds)
2017-06-13 19:37:08,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (34 seconds)
2017-06-13 19:37:09,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (35 seconds)
2017-06-13 19:37:10,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (36 seconds)
2017-06-13 19:37:11,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (37 seconds)
2017-06-13 19:37:12,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (38 seconds)
2017-06-13 19:37:13,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (39 seconds)
2017-06-13 19:37:14,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (40 seconds)
2017-06-13 19:37:15,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (41 seconds)
2017-06-13 19:37:16,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (42 seconds)
2017-06-13 19:37:17,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (43 seconds)
2017-06-13 19:37:18,914 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (44 seconds)
2017-06-13 19:37:19,704 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (45 seconds)
2017-06-13 19:37:20,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (46 seconds)
2017-06-13 19:37:21,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (47 seconds)
2017-06-13 19:37:22,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (48 seconds)
2017-06-13 19:37:23,701 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (49 seconds)
2017-06-13 19:37:24,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (50 seconds)
2017-06-13 19:37:25,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (51 seconds)
2017-06-13 19:37:26,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (52 seconds)
2017-06-13 19:37:27,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (53 seconds)
2017-06-13 19:37:28,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (54 seconds)
2017-06-13 19:37:29,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (55 seconds)
2017-06-13 19:37:30,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (56 seconds)
2017-06-13 19:37:31,707 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (57 seconds)
2017-06-13 19:37:32,710 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (58 seconds)
2017-06-13 19:37:33,710 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (59 seconds)
2017-06-13 19:37:34,709 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (60 seconds)
2017-06-13 19:37:35,709 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (61 seconds)
2017-06-13 19:37:36,709 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (62 seconds)
2017-06-13 19:37:37,709 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (63 seconds)
2017-06-13 19:37:41,530 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (64 seconds)
2017-06-13 19:37:45,368 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (65 seconds)
2017-06-13 19:37:45,701 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (66 seconds)
2017-06-13 19:37:46,732 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (67 seconds)
2017-06-13 19:37:47,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (68 seconds)
2017-06-13 19:37:48,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (69 seconds)
2017-06-13 19:37:49,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (70 seconds)
2017-06-13 19:37:50,701 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (71 seconds)
2017-06-13 19:37:51,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (72 seconds)
2017-06-13 19:37:52,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (73 seconds)
2017-06-13 19:37:53,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (74 seconds)
2017-06-13 19:37:54,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (75 seconds)
2017-06-13 19:37:55,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (76 seconds)
2017-06-13 19:37:56,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (77 seconds)
2017-06-13 19:37:57,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (78 seconds)
2017-06-13 19:37:58,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (79 seconds)
2017-06-13 19:37:59,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (80 seconds)
2017-06-13 19:38:00,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (81 seconds)
2017-06-13 19:38:01,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (82 seconds)
2017-06-13 19:38:02,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (83 seconds)
2017-06-13 19:38:03,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (84 seconds)
2017-06-13 19:38:04,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (85 seconds)
2017-06-13 19:38:05,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (86 seconds)
2017-06-13 19:38:06,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (87 seconds)
2017-06-13 19:38:07,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (88 seconds)
2017-06-13 19:38:08,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (89 seconds)
2017-06-13 19:38:09,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (90 seconds)
2017-06-13 19:38:10,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (91 seconds)
2017-06-13 19:38:11,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (92 seconds)
2017-06-13 19:38:12,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (93 seconds)
2017-06-13 19:38:13,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (94 seconds)
2017-06-13 19:38:14,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (95 seconds)
2017-06-13 19:38:15,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (96 seconds)
2017-06-13 19:38:16,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (97 seconds)
2017-06-13 19:38:17,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (98 seconds)
2017-06-13 19:38:18,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (99 seconds)
2017-06-13 19:38:19,698 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (100 seconds)
2017-06-13 19:38:20,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (101 seconds)
2017-06-13 19:38:21,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (102 seconds)
2017-06-13 19:38:22,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (103 seconds)
2017-06-13 19:38:23,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (104 seconds)
2017-06-13 19:38:24,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (105 seconds)
2017-06-13 19:38:25,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (106 seconds)
2017-06-13 19:38:26,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (107 seconds)
2017-06-13 19:38:27,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (108 seconds)
2017-06-13 19:38:28,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (109 seconds)
2017-06-13 19:38:29,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (110 seconds)
2017-06-13 19:38:30,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (111 seconds)
2017-06-13 19:38:31,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (112 seconds)
2017-06-13 19:38:32,701 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (113 seconds)
2017-06-13 19:38:33,701 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (114 seconds)
2017-06-13 19:38:34,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (115 seconds)
2017-06-13 19:38:35,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (116 seconds)
2017-06-13 19:38:36,700 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (117 seconds)
2017-06-13 19:38:37,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (118 seconds)
2017-06-13 19:38:38,704 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (119 seconds)
2017-06-13 19:38:39,698 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (120 seconds)
2017-06-13 19:38:40,520 INFO     lbrynet.core.Wallet:809: Resolving lbry://coherence-trailer
2017-06-13 19:38:40,703 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (121 seconds)
2017-06-13 19:38:41,388 INFO     lbrynet.lbrynet_daemon.Daemon:2376: Need sd blob
2017-06-13 19:38:41,390 INFO     lbrynet.core.client.ConnectionManager:38: Connection Manager 33aac4eddb3ecafa81c58b39c7d5315d18880cbf3420b69eaf200d58e945086ae0fb2ebb7a7215a82fe7039799de0d8f initialized
2017-06-13 19:38:41,697 INFO     lbrynet.lbrynet_daemon.Downloader:78: Downloading stream data (122 seconds)
2017-06-13 19:38:42,335 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://coherence-trailer status changed to initializing
2017-06-13 19:38:42,335 INFO     lbrynet.lbrynet_daemon.Downloader:101: Download lbry://coherence-trailer status changed to downloading_metadata

@tzarebczan
Copy link
Contributor

in app (not sure if this was the first time around, or when it already became unresponsive:
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
/C:/Program%20Files/LBRY/resources/app/dist/show?uri=lbry://@CasuallyExplained/casually-successful:1 Uncaught (in promise)
Object
code
:
-32500
data
:
Object
message
:
"'ascii' codec can't decode byte 0xcc in position 41: ordinal not in range(128)"
proto
:
Object
defineGetter
:
defineGetter()
defineSetter
:
defineSetter()
lookupGetter
:
lookupGetter()
lookupSetter
:
lookupSetter()
constructor
:
Object()
hasOwnProperty
:
hasOwnProperty()
isPrototypeOf
:
isPrototypeOf()
propertyIsEnumerable
:
propertyIsEnumerable()
toLocaleString
:
toLocaleString()
arguments
:
null
caller
:
null
length
:
0
name
:
"toLocaleString"
proto
:
()
[[FunctionLocation]]
:

toString
:
toString()
valueOf
:
valueOf()
get proto
:
proto()
set proto
:
proto()

@tzarebczan
Copy link
Contributor

tzarebczan commented Jun 16, 2017

Also getting it here, but the stream and file works fine.

/C:/Program%20Files%20(x86)/LBRY/resources/app/dist/show?uri=lbry://LendersDen:1 Uncaught (in promise) Object {code: -32500, data: Object, message: "'ascii' codec can't decode byte 0xe2 in position 10: ordinal not in range(128)"}

@tzarebczan
Copy link
Contributor

@kaykurokawa is this related and will be fixed in the next release too? #661

This is what I see in my log - I hope this has something to do with my Downloads/Published items not showing on Windows install. Other users have reported similar issues.

017-06-26 13:21:33,012 ERROR lbrynet.lbrynet_daemon.auth.server:346: Failed to process file_list: 'ascii' codec can't decode byte 0xe2 in position 10: ordinal not in range(128)
Traceback (most recent call last):
File "site-packages\twisted\internet\defer.py", line 1299, in _inlineCallbacks
File "site-packages\lbrynet\lbrynet_daemon\Daemon.py", line 866, in _get_lbry_file_dict
File "ntpath.py", line 85, in join
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 10: ordinal not in range(128)

@tzarebczan
Copy link
Contributor

tzarebczan commented Jun 29, 2017

console:
index.html#/show?uri=lbry://@CasuallyExplained/casually-successful:1 Uncaught (in promise)
Object
code
:
-32500
data
:
Object
message
:
"'ascii' codec can't decode byte 0xcc in position 41: ordinal not in range(128)"
proto
:
Object

2017-06-29 19:27:47,904 INFO lbrynet.core.client.ConnectionManager:38: Connection Manager 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 initialized
2017-06-29 19:27:47,905 INFO lbrynet.lbrynet_daemon.Daemon:2538: check peers for 5 of 5 blobs in stream
2017-06-29 19:27:48,575 INFO lbrynet.lbrynet_daemon.Downloader:104: Download lbry://casually-successful status changed to initializing
2017-06-29 19:27:48,578 INFO lbrynet.lbrynet_daemon.Downloader:97: Downloading stream descriptor blob (1 seconds)
2017-06-29 19:27:48,578 INFO lbrynet.lbrynet_daemon.Downloader:104: Download lbry://casually-successful status changed to downloading_metadata
2017-06-29 19:27:48,578 INFO lbrynet.core.client.ConnectionManager:38: Connection Manager 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 initialized
2017-06-29 19:27:48,648 INFO lbrynet.lbryfile.EncryptedFileMetadataManager:246: Saved sd blob hash 8d20e99a127c90c7b67641fefbe23609346058ab55ed878c4f3b66555c120ba65dcfdaf648410d171be6d027d53bc4b1 to stream hash 9dba62280f52ecb18c8c675e9128b8e0b3ebe9e68e8357e8bbeb3f85c9ba5867802dab08efe70818f048035082ebba10
2017-06-29 19:27:48,668 INFO lbrynet.lbrynet_daemon.Downloader:104: Download lbry://casually-successful status changed to running
2017-06-29 19:27:48,668 WARNING lbrynet.lbrynet_daemon.Daemon:675: Failed to get casually-successful: 'ascii' codec can't decode byte 0xcc in position 41: ordinal not in range(128)
2017-06-29 19:27:48,677 ERROR lbrynet.lbrynet_daemon.auth.server:346: Failed to process file_list: 'ascii' codec can't decode byte 0xcc in position 41: ordinal not in range(128)
Traceback (most recent call last):
File "site-packages\twisted\internet\defer.py", line 1299, in _inlineCallbacks
File "site-packages\lbrynet\lbrynet_daemon\Daemon.py", line 856, in _get_lbry_file_dict
File "ntpath.py", line 85, in join
UnicodeDecodeError: 'ascii' codec can't decode byte 0xcc in position 41: ordinal not in range(128)

@lyoshenka lyoshenka added the type: bug Existing functionality is wrong or broken label Jun 30, 2017
@kauffj kauffj added P1 and removed next release labels Jun 30, 2017
@lyoshenka lyoshenka modified the milestone: July 7, 2017 Jun 30, 2017
@lyoshenka lyoshenka reopened this Jul 5, 2017
@tzarebczan
Copy link
Contributor

#750 is being used to track a new issue that surfaced after this was fixed on my main PC.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: bug Existing functionality is wrong or broken
Projects
None yet
Development

No branches or pull requests

5 participants