Skip to content

Commit 3851ed9

Browse files
committed
fix fmt
Signed-off-by: Markus Blaschke <[email protected]>
1 parent 0da8de5 commit 3851ed9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

probe.go

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,14 @@ func handleProbeRequest(w http.ResponseWriter, r *http.Request) {
8888
queryConfig.Subscriptions = &defaultSubscriptions
8989
}
9090

91-
9291
requestQueryTop := int32(RESOURCEGRAPH_QUERY_OPTIONS_TOP)
9392
requestQuerySkip := int32(0)
9493

9594
// Set options
9695
RequestOptions := resourcegraph.QueryRequestOptions{
9796
ResultFormat: "objectArray",
98-
Top: &requestQueryTop,
99-
Skip: &requestQuerySkip,
97+
Top: &requestQueryTop,
98+
Skip: &requestQuerySkip,
10099
}
101100

102101
// Run the query and get the results

0 commit comments

Comments
 (0)