Skip to content

Commit

Permalink
Set default verbose to True
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunxuTang committed May 24, 2024
1 parent 32c688c commit 7e10c29
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions alluxiofs/client/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -369,15 +369,15 @@ def load(
self,
path,
timeout=None,
verbose=False,
verbose=True,
):
"""
Loads a file.
Args:
path (str): The full path with storage protocol to load data from
timeout (integer): The number of seconds for timeout, optional
verbose (boolean): Whether enabling verbose load logging, default `False`
verbose (boolean): Whether enabling verbose load logging, default `True`
Returns:
result (boolean): Whether the file has been loaded successfully
Expand All @@ -393,14 +393,14 @@ def load(
def submit_load(
self,
path,
verbose=False,
verbose=True,
):
"""
Submits a load job for a file.
Args:
path (str): The full ufs file path to load data from
verbose (boolean): Whether enabling verbose load logging, default `False`
verbose (boolean): Whether enabling verbose load logging, default `True`
Returns:
result (boolean): Whether the job has been submitted successfully
Expand Down Expand Up @@ -467,14 +467,14 @@ def stop_load(
def load_progress(
self,
path,
verbose=False,
verbose=True,
):
"""
Gets the progress of the load job for a path.
Args:
path (str): The full UFS file path to load data from UFS to Alluxio.
verbose (boolean): Whether enabling verbose load logging, default `False`
verbose (boolean): Whether enabling verbose load logging, default `True`
Returns:
LoadState: The current state of the load job as a LoadState enum. Possible values are:
Expand Down

0 comments on commit 7e10c29

Please sign in to comment.