Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rmfuse/fuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ def parse_args():
parser.add_argument('--version', action='version', version=VERSION)
return parser.parse_args()

def isconnected(host='1.1.1.1', port=80, timeout=1):
def isconnected(host='api.store.remarkable.com', port=80, timeout=5):
# timeout is expressed in seconds
try:
s = socket.create_connection((host, port), timeout)
Expand Down