|
@@ -225,6 +225,7 @@ class CreateMixIn:
|
|
|
progress=args.progress,
|
|
|
lock_wait=self.lock_wait,
|
|
|
permit_adhoc_cache=args.no_cache_sync,
|
|
|
+ force_adhoc_cache=args.no_cache_sync_forced,
|
|
|
cache_mode=args.files_cache_mode,
|
|
|
iec=args.iec,
|
|
|
) as cache:
|
|
@@ -803,6 +804,12 @@ class CreateMixIn:
|
|
|
action="store_true",
|
|
|
help="experimental: do not synchronize the cache. Implies not using the files cache.",
|
|
|
)
|
|
|
+ subparser.add_argument(
|
|
|
+ "--no-cache-sync-forced",
|
|
|
+ dest="no_cache_sync_forced",
|
|
|
+ action="store_true",
|
|
|
+ help="experimental: do not synchronize the cache (forced). Implies not using the files cache.",
|
|
|
+ )
|
|
|
subparser.add_argument(
|
|
|
"--stdin-name",
|
|
|
metavar="NAME",
|