Skip to content

Commit d185377

Browse files
authored
"./gradlew :instrumentation:google-http-client-1.19:muzzle" is failing (#4043)
I figured out there is missing string in between while running: ``` ./gradlew help --task muzzle ... :instrumentation:google-http-client-1.19:javaagent:muzzle :instrumentation:grails-3.0:javaagent:muzzle :instrumentation:grizzly-2.0:javaagent:muzzle :instrumentation:grpc-1.6:javaagent:muzzle ... ```
1 parent 78c4d98 commit d185377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/contributing/muzzle.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ The gradle plugin defines two tasks:
7777

7878
* `muzzle` task runs the runtime muzzle verification against different library versions:
7979
```sh
80-
./gradlew :instrumentation:google-http-client-1.19:muzzle
80+
./gradlew :instrumentation:google-http-client-1.19:javaagent:muzzle
8181
```
8282
If a new, incompatible version of the instrumented library is published it fails the build.
8383

8484
* `printMuzzleReferences` task prints all API references in a given module:
8585
```sh
86-
./gradlew :instrumentation:google-http-client-1.19:printMuzzleReferences
86+
./gradlew :instrumentation:google-http-client-1.19:javaagent:printMuzzleReferences
8787
```
8888

8989
The muzzle plugin needs to be configured in the module's `.gradle` file.

0 commit comments

Comments
 (0)