Skip to content

Commit

Permalink
Merge pull request #4098 from jeclrsg/bump-filespray-version
Browse files Browse the repository at this point in the history
chore(comms): bump version of FileSpray service
  • Loading branch information
GordonSmith authored Jun 17, 2023
2 parents b7fc021 + 7f24174 commit db15791
Show file tree
Hide file tree
Showing 3 changed files with 1,029 additions and 1 deletion.
2 changes: 2 additions & 0 deletions packages/comms/src/ecl/dfuWorkunit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ export class DFUWorkunit extends StateObject<UDFUWorkunitState, IDFUWorkunitStat
get expireDays(): number { return this.get("expireDays"); }
get PreserveFileParts(): boolean { return this.get("PreserveFileParts"); }
get FileAccessCost(): number { return this.get("FileAccessCost"); }
get KbPerSecAve(): number { return this.get("KbPerSecAve"); }
get KbPerSec(): number { return this.get("KbPerSec"); }

// Factories ---
static create(optsConnection: IOptions | IConnection, dfuServerQueue: string): Promise<DFUWorkunit> {
Expand Down
3 changes: 2 additions & 1 deletion packages/comms/src/services/fileSpray.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FileSprayServiceBase, FileSpray } from "./wsdl/FileSpray/v1.23/FileSpray";
import { FileSprayServiceBase, FileSpray } from "./wsdl/FileSpray/v1.25/FileSpray";

export {
FileSpray
Expand All @@ -13,6 +13,7 @@ export interface SprayFixedEx {
sourceRecordSize?: number;
destGroup?: string;
destLogicalName?: string;
destNumParts?: number;
overwrite?: boolean;
replicate?: boolean;
ReplicateOffset?: number;
Expand Down
Loading

0 comments on commit db15791

Please sign in to comment.