Skip to content
This repository was archived by the owner on Feb 2, 2022. It is now read-only.

Commit 20509ea

Browse files
authored
Update version for new release (#60)
Fields removed from restler v7.1.0 Update doc
1 parent 361268f commit 20509ea

File tree

5 files changed

+4
-15
lines changed

5 files changed

+4
-15
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ These can be configured and used in the system via configuration files and requi
1616
This project is designed to run on [Azure](https://azure.microsoft.com).
1717

1818
To deploy the service download the CLI release and run `python raft.py service deploy`. See
19-
the [documentation](docs/deploying/deploying.md) for more details.
19+
the [documentation](docs/how-to-deploy.md) for more details.
2020

2121
Once deployed, read about [how to submit a job](docs/how-to-submit-a-job.md) and
2222
use the [samples](docs/samples.md) to try out the service and fuzzers!
2323

2424
### Documentation
2525

2626
* [Table of Contents](docs/index.md)
27-
* [Overview](docs/how-it-works/overview.md)
27+
* [Overview](docs/how-it-works)
2828
* [FAQ](docs/faq.md)
2929

3030
### Swagger Documentation

ado/variables/version-variables.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ variables:
22
- name: version.major
33
value: 1
44
- name: version.minor
5-
value: 0
5+
value: 1
66
- name: imageTag
7-
value: 'v1.0.0'
7+
value: 'v1.1.0'
88
- name: imageTagLatest
99
value: 'v1.latest'
1010
- name: devRevision

docs/how-it-works.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,6 @@ Here's a breakdown of the estimated Azure spend for running RAFT:
5252
- Container Instances - about $0.045 cents per running hour. (A container instance
5353
is created for each submitted job and runs for the specified duration in the job definition.)
5454

55-
In summary, a RAFT instance that ran a series of daily tests against ten REST
56-
APIs would cost less than $100 a month.
57-
58-
NOTE: `defaults.json` provides a flag to disable deployment of Application Insights during the initial service deployment. This will reduce Azure costs without affecting service functionality.
59-
6055
<br/>
6156

6257
## How a job executes

src/Agent/RESTlerAgent/AgentMain.fs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -910,10 +910,7 @@ let main argv =
910910
//.Add("numFullyValid", sprintf "%d" status.num_fully_valid)
911911
//.Add("numSequenceFailures", sprintf "%d" status.num_sequence_failures)
912912
//.Add("numInvalidByFailedResourceCreations", sprintf "%d" status.num_invalid_by_failed_resource_creations)
913-
//.Add("throughput", sprintf "%f" status.throughput)
914913
//.Add("totalObjectCreations", sprintf "%d" status.total_object_creations)
915-
//.Add("totalUniqueTestCases", sprintf "%f" status.total_unique_test_cases)
916-
//.Add("totalSequences", sprintf "%d" status.total_sequences)
917914
)
918915

919916
printfn "Sending final event: %A with summary: %A and details %A" state summary details

src/Agent/RESTlerAgent/RESTlerTypes.fs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,7 @@ module Logs =
310310
num_fully_valid: int
311311
num_sequence_failures: int
312312
num_invalid_by_failed_resource_creations: int
313-
throughput: float
314313
total_object_creations: int
315-
total_unique_test_cases: float
316-
total_sequences: int
317314
total_requests_sent : IDictionary<string, int>
318315
bug_buckets : IDictionary<string, int>
319316
}

0 commit comments

Comments
 (0)