src/main/java/com/amazonaws/services/neptune/CreatePropertyGraphExportConfig.java [109:128]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                    gremlinFilters.filters(),
                                    cluster.concurrencyConfig(),
                                    targetConfig, featureToggles(),
                                    getMaxFileDescriptorCount()
                            );

                            graphSchema = exportJob.execute();

                            configFileResource.save(graphSchema, false);
                            statsFileResource.save(stats, graphSchema);
                        }

                        directories.writeRootDirectoryPathAsMessage(target.description(), target);
                        configFileResource.writeResourcePathAsMessage(target);

                        System.err.println();
                        System.err.println(stats.formatStats(graphSchema));

                        directories.writeRootDirectoryPathAsReturnValue(target);
                        onExportComplete(directories, stats, cluster, graphSchema);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/amazonaws/services/neptune/ExportPropertyGraphFromConfig.java [108:127]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                gremlinFilters.filters(),
                                cluster.concurrencyConfig(),
                                targetConfig, featureToggles(),
                                getMaxFileDescriptorCount()
                        );

                        graphSchema = exportJob.execute();

                        configFileResource.save(graphSchema, false);
                        statsFileResource.save(stats, graphSchema);
                    }

                    directories.writeRootDirectoryPathAsMessage(target.description(), target);
                    configFileResource.writeResourcePathAsMessage(target);

                    System.err.println();
                    System.err.println(stats.formatStats(graphSchema));

                    directories.writeRootDirectoryPathAsReturnValue(target);
                    onExportComplete(directories, stats, cluster, graphSchema);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



