Skip to content
Open
Show file tree
Hide file tree
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 DataFileUtil.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ all: compile build build-startup-script build-executable-script build-test-scrip
compile:
kb-sdk compile $(SPEC_FILE) \
--out $(LIB_DIR) \
--clasyncver \
--html \
--clasyncver release \
--pyclname $(SERVICE_CAPS).$(SERVICE_CAPS)Client \
--pyimplname $(SERVICE_CAPS).$(SERVICE_CAPS)Impl \
--pysrvname $(SERVICE_CAPS).$(SERVICE_CAPS)Server
kb-sdk compile $(SPEC_FILE) --html

build:
chmod +x $(SCRIPTS_DIR)/entrypoint.sh
Expand Down
2 changes: 1 addition & 1 deletion lib/DataFileUtil/DataFileUtilClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(
password=None, token=None, ignore_authrc=False,
trust_all_ssl_certificates=False,
auth_svc='https://ci.kbase.us/services/auth/api/legacy/KBase/Sessions/Login',
service_ver='--html',
service_ver='release',
async_job_check_time_ms=100, async_job_check_time_scale_percent=150,
async_job_check_max_time_ms=300000):
if url is None:
Expand Down
2 changes: 1 addition & 1 deletion lib/DataFileUtil/DataFileUtilImpl.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class DataFileUtil:
######################################### noqa
VERSION = "0.2.2"
GIT_URL = "https://github.com/kbaseapps/DataFileUtil.git"
GIT_COMMIT_HASH = "0d855560a37f8787ab3bb67e464b9c94b299764e"
GIT_COMMIT_HASH = "8645c467e40937a79fd8ebea3aecb853f5fec048"

#BEGIN_CLASS_HEADER

Expand Down
Loading