Skip to content

Commit c12ddda

Browse files
committed
More path fixes.
1 parent 78acb0e commit c12ddda

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

doc/quickstart.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ topology in pure Python using Thrift. For details see :ref:`topology_dsl`.
135135
Let's have a look at the definition file created by using the
136136
``sparse quickstart`` command.
137137

138-
.. literalinclude:: ../../streamparse/bootstrap/project/topologies/wordcount.py
138+
.. literalinclude:: ../streamparse/bootstrap/project/topologies/wordcount.py
139139
:language: python
140140

141141
In the ``count_bolt`` bolt, we've told Storm that we'd like the stream of

doc/topologies.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ Simple Python Example
3636
The first step to putting together a topology, is creating the bolts and spouts,
3737
so let's assume we have the following bolt and spout:
3838

39-
.. literalinclude:: ../../examples/redis/src/bolts.py
39+
.. literalinclude:: ../examples/redis/src/bolts.py
4040
:language: python
4141
:lines: 1-28
4242

43-
.. literalinclude:: ../../examples/redis/src/spouts.py
43+
.. literalinclude:: ../examples/redis/src/spouts.py
4444
:language: python
4545

4646
One important thing to note is that we have added an ``outputs`` attribute to
@@ -51,7 +51,7 @@ objects.
5151

5252
Now let's hook up the bolt to read from the spout:
5353

54-
.. literalinclude:: ../../examples/redis/topologies/wordcount_mem.py
54+
.. literalinclude:: ../examples/redis/topologies/wordcount_mem.py
5555
:language: python
5656

5757
.. note::
@@ -72,7 +72,7 @@ The topology DSL fully supports JVM-based bolts and spouts via the
7272
Here's an example of how we would use the
7373
`Storm Kafka Spout <http://storm.apache.org/releases/current/storm-kafka.html>`_:
7474

75-
.. literalinclude:: ../../examples/kafka-jvm/topologies/pixelcount.py
75+
.. literalinclude:: ../examples/kafka-jvm/topologies/pixelcount.py
7676
:language: python
7777

7878
One limitation of the Thrift interface we use to send the topology to Storm is
@@ -127,7 +127,7 @@ attribute. The most common grouping is probably the
127127
with the same value for the specified fields to the same executor. This can be
128128
seen in the prototypical word count topology:
129129

130-
.. literalinclude:: ../../examples/redis/topologies/wordcount_mem.py
130+
.. literalinclude:: ../examples/redis/topologies/wordcount_mem.py
131131
:language: python
132132

133133

0 commit comments

Comments
 (0)