Skip to content

Commit 044a2b3

Browse files
committed
removing file outputter
1 parent 891b8fa commit 044a2b3

File tree

1 file changed

+0
-35
lines changed

1 file changed

+0
-35
lines changed

sdk/storage/azure-storage-common/src/main/java/com/azure/storage/common/policy/StorageContentValidationPolicy.java

Lines changed: 0 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -112,41 +112,6 @@ private void applyStructuredMessage(HttpPipelineCallContext context) {
112112
.flatMapSequential(stagingArea::write, 1, 1)
113113
.concatWith(Flux.defer(stagingArea::flush))
114114
.concatMap(bufferAggregator -> bufferAggregator.asFlux().concatMap(structuredMessageEncoder::encode));
115-
//
116-
// // For test purposes, write the encoded body to a file.
117-
// final AtomicReference<FileChannel> fileChannelRef = new AtomicReference<>();
118-
// encodedBody = encodedBody.doOnSubscribe(subscription -> {
119-
// try {
120-
// Path path = Paths.get("encoded-output-bad.bin");
121-
// fileChannelRef.set(FileChannel.open(path, StandardOpenOption.CREATE, StandardOpenOption.WRITE,
122-
// StandardOpenOption.TRUNCATE_EXISTING));
123-
// } catch (IOException e) {
124-
// throw new UncheckedIOException(e);
125-
// }
126-
// }).doOnNext(buffer -> {
127-
// try {
128-
// // Duplicate buffer to avoid affecting the original buffer's position
129-
// fileChannelRef.get().write(buffer.duplicate());
130-
// } catch (IOException e) {
131-
// throw new UncheckedIOException(e);
132-
// }
133-
// }).doOnComplete(() -> {
134-
// try {
135-
// if (fileChannelRef.get() != null) {
136-
// fileChannelRef.get().close();
137-
// }
138-
// } catch (IOException e) {
139-
// throw new UncheckedIOException(e);
140-
// }
141-
// }).doOnError(error -> {
142-
// try {
143-
// if (fileChannelRef.get() != null) {
144-
// fileChannelRef.get().close();
145-
// }
146-
// } catch (IOException e) {
147-
// error.addSuppressed(e);
148-
// }
149-
// });
150115

151116
// Set the encoded body
152117
context.getHttpRequest().setBody(encodedBody);

0 commit comments

Comments
 (0)